Efficiently\AuthorityController\Parameters::except PHP Метод

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

Get all of the input except for a specified array of items.
public except ( array $keys = null ) : array
$keys array
Результат array
    public function except($keys = null)
    {
        $keys = is_array($keys) ? $keys : func_get_args();
        return array_except($this->params, $keys);
    }