PHP Класс ManaPHP\Counter

Наследование: extends Component, implements manaphp\CounterInterface
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
$adapter ManaPHP\Counter\AdapterInterface

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

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

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

Метод Описание
__construct ( string | array | ManaPHP\Counter\AdapterInterface $options = [] ) Counter constructor.
decrement ( string $type, string $id, integer $step = 1 ) : integer Decrements the value of key by a given step.
delete ( string $type, string $id ) : void Deletes the key
get ( string $type, string $id ) : integer
increment ( string $type, string $id, integer $step = 1 ) : integer Increments the value of key by a given step.
setDependencyInjector ( ManaPHP\DiInterface $dependencyInjector ) : static

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

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

Counter constructor.
public __construct ( string | array | ManaPHP\Counter\AdapterInterface $options = [] )
$options string | array | ManaPHP\Counter\AdapterInterface

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

Decrements the value of key by a given step.
public decrement ( string $type, string $id, integer $step = 1 ) : integer
$type string
$id string
$step integer
Результат integer the new value

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

Deletes the key
public delete ( string $type, string $id ) : void
$type string
$id string
Результат void

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

public get ( string $type, string $id ) : integer
$type string
$id string
Результат integer

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

Increments the value of key by a given step.
public increment ( string $type, string $id, integer $step = 1 ) : integer
$type string
$id string
$step integer
Результат integer the new value

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

public setDependencyInjector ( ManaPHP\DiInterface $dependencyInjector ) : static
$dependencyInjector ManaPHP\DiInterface
Результат static

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

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

protected string $_prefix
Результат string

$adapter публичное свойство

public AdapterInterface,ManaPHP\Counter $adapter
Результат ManaPHP\Counter\AdapterInterface