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

잔글 (봇: 자동으로 텍스트 교체 (-==참고 자료== +==참고==))
23번째 줄: 23번째 줄:
* [[라라벨 TokenGuard.php]]
* [[라라벨 TokenGuard.php]]


==참고 자료==
==참고==
* https://laravel.com/api/5.1/Illuminate/Auth/Guard.html
* https://laravel.com/api/5.1/Illuminate/Auth/Guard.html
* https://github.com/illuminate/contracts/blob/master/Auth/Guard.php
* https://github.com/illuminate/contracts/blob/master/Auth/Guard.php

2017년 7월 11일 (화) 02:12 판

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 같이 보기

3 참고

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