PHP Интерфейс ManaPHP\Http\Session\BagInterface

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

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

Метод Описание
destroy ( ) Destroy the session bag
get ( string $property = null, mixed $defaultValue = null ) : mixed Getter of values
has ( string $property ) : boolean Isset property
remove ( string $property ) Unset property
set ( string $property, mixed $value ) Setter of values

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

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

Destroy the session bag
public destroy ( )

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

Getter of values
public get ( string $property = null, mixed $defaultValue = null ) : mixed
$property string
$defaultValue mixed
Результат mixed

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

Isset property
public has ( string $property ) : boolean
$property string
Результат boolean

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

Unset property
public remove ( string $property )
$property string

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

Setter of values
public set ( string $property, mixed $value )
$property string
$value mixed