Xpressengine\Permission\Permission::pure PHP 메소드

pure() 공개 메소드

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