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

잔글 (Jmnote님이 라라벨 Guard 문서를 라라벨 Guard.php 문서로 이동했습니다)
잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(사용자 2명의 중간 판 2개는 보이지 않습니다)
2번째 줄: 2번째 줄:
;라라벨 Guard
;라라벨 Guard


<source lang='php'>
<syntaxhighlight lang='php'>
<?php
<?php


16번째 줄: 16번째 줄:
     public function setUser(Authenticatable $user);
     public function setUser(Authenticatable $user);
}
}
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
* [[라라벨 RequestGuard]]
* [[라라벨 RequestGuard.php]]
* [[라라벨 SessionGuard]]
* [[라라벨 SessionGuard.php]]
* [[라라벨 TokenGuard]]
* [[라라벨 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

2020년 11월 2일 (월) 02:57 기준 최신판

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 }}