Xpressengine\Support\Entity::isGuarded PHP 메소드

isGuarded() 공개 메소드

Determine if the given key is guarded.
public isGuarded ( string $key ) : boolean
$key string key name
리턴 boolean
    public function isGuarded($key)
    {
        return in_array($key, $this->guarded) || $this->guarded == ['*'];
    }