Xpressengine\Permission\Permission::pure PHP Method

pure() public method

Get value of without inherit
public pure ( string $key ) : mixed | null
$key string grant action name
return mixed | null
    public function pure($key)
    {
        return isset($this->grant->{$key}) ? $this->grant->{$key} : null;
    }