PHP 인터페이스 Sentinel\Repositories\Group\SentinelGroupRepositoryInterface

파일 보기 프로젝트 열기: rydurham/sentinel

공개 메소드들

메소드 설명
all ( ) : Illuminate\Database\Eloquent\Collection Return all the registered users
destroy ( integer $id ) : Illuminate\Http\Response Remove the specified resource from storage.
retrieveById ( integer $id ) : User Return a specific user by a given id
retrieveByName ( string $name ) : User Return a specific user by a given name
store ( $data ) : Illuminate\Http\Response Store a newly created resource in storage.
update ( integer $id ) : Illuminate\Http\Response Update the specified resource in storage.

메소드 상세

all() 공개 메소드

Return all the registered users
public all ( ) : Illuminate\Database\Eloquent\Collection
리턴 Illuminate\Database\Eloquent\Collection

destroy() 공개 메소드

Remove the specified resource from storage.
public destroy ( integer $id ) : Illuminate\Http\Response
$id integer
리턴 Illuminate\Http\Response

retrieveById() 공개 메소드

Return a specific user by a given id
public retrieveById ( integer $id ) : User
$id integer
리턴 Sentinel\Models\User

retrieveByName() 공개 메소드

Return a specific user by a given name
public retrieveByName ( string $name ) : User
$name string
리턴 Sentinel\Models\User

store() 공개 메소드

Store a newly created resource in storage.
public store ( $data ) : Illuminate\Http\Response
리턴 Illuminate\Http\Response

update() 공개 메소드

Update the specified resource in storage.
public update ( integer $id ) : Illuminate\Http\Response
$id integer
리턴 Illuminate\Http\Response