PHP Класс Efficiently\AuthorityController\Parameters

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

Защищенные свойства (Protected)

Свойство Тип Описание
$params

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

Метод Описание
add ( string $key, mixed $value ) : mixed Adds an item to the parameters.
all ( ) : array Get all of the parameters for the request.
except ( array $keys = null ) : array Get all of the input except for a specified array of items.
fillController ( Illuminate\Routing\Controller $controller ) Fill the $params property of the given Controller
get ( string $key, mixed $default = null ) : mixed Get an item from the parameters.
has ( string | array $key ) : boolean Determine if the request contains a given parameter item.
only ( array $keys = null ) : array Get a subset of the items from the parameters.

Защищенные методы

Метод Описание
normalizeControllerName ( string $controller ) : string
specialInputKeys ( array $inputKeys = [] ) : array Returns all inputs keys who starts with an underscore character (_).

Описание методов

add() публичный Метод

Adds an item to the parameters.
public add ( string $key, mixed $value ) : mixed
$key string Key to add value to.
$value mixed New data.
Результат mixed

all() публичный Метод

Get all of the parameters for the request.
public all ( ) : array
Результат array

except() публичный Метод

Get all of the input except for a specified array of items.
public except ( array $keys = null ) : array
$keys array
Результат array

fillController() публичный Метод

Fill the $params property of the given Controller
public fillController ( Illuminate\Routing\Controller $controller )
$controller Illuminate\Routing\Controller

get() публичный Метод

Get an item from the parameters.
public get ( string $key, mixed $default = null ) : mixed
$key string
$default mixed
Результат mixed

has() публичный Метод

Determine if the request contains a given parameter item.
public has ( string | array $key ) : boolean
$key string | array
Результат boolean

normalizeControllerName() защищенный Метод

protected normalizeControllerName ( string $controller ) : string
$controller string
Результат string

only() публичный Метод

Get a subset of the items from the parameters.
public only ( array $keys = null ) : array
$keys array
Результат array

specialInputKeys() защищенный Метод

For exmaple '_method' and '_token' inputs
protected specialInputKeys ( array $inputKeys = [] ) : array
$inputKeys array
Результат array

Описание свойств

$params защищенное свойство

protected $params