Efficiently\AuthorityController\Parameters::add PHP 메소드

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
    public function add($key, $value)
    {
        return array_set($this->params, $key, $value);
    }