Efficiently\AuthorityController\Parameters::add PHP Méthode

add() public méthode

Adds an item to the parameters.
public add ( string $key, mixed $value ) : mixed
$key string Key to add value to.
$value mixed New data.
Résultat mixed
    public function add($key, $value)
    {
        return array_set($this->params, $key, $value);
    }