ApiPlatform\Core\Bridge\Doctrine\Orm\Filter\AbstractFilter::isPropertyEnabled PHP 메소드

isPropertyEnabled() 보호된 메소드

Determines whether the given property is enabled.
protected isPropertyEnabled ( string $property ) : boolean
$property string
리턴 boolean
    protected function isPropertyEnabled(string $property) : bool
    {
        if (null === $this->properties) {
            // to ensure sanity, nested properties must still be explicitly enabled
            return !$this->isPropertyNested($property);
        }
        return array_key_exists($property, $this->properties);
    }