"라라벨 Guard.php"의 두 판 사이의 차이

(새 문서: ==개요== ;라라벨 Guard <source lang='php'> <?php namespace Illuminate\Contracts\Auth; interface Guard { public function check(); public function guest(); public fu...)
 
17번째 줄: 17번째 줄:
}
}
</source>
</source>
==참고 자료==
* https://laravel.com/api/5.1/Illuminate/Auth/Guard.html
* https://github.com/illuminate/contracts/blob/master/Auth/Guard.php


[[분류: 라라벨 Contracts]]
[[분류: 라라벨 Contracts]]

2016년 8월 28일 (일) 21:14 판

1 개요

라라벨 Guard
<?php

namespace Illuminate\Contracts\Auth;

interface Guard
{
    public function check();
    public function guest();
    public function user();
    public function id();
    public function validate(array $credentials = []);
    public function setUser(Authenticatable $user);
}

2 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}