PHP Интерфейс Sentinel\Repositories\Group\SentinelGroupRepositoryInterface

Показать файл Открыть проект

Открытые методы

Метод Описание
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