FOF30\Model\DataModel\RelationManager::isMagicProperty PHP Метод

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

Is $name a magic property? Corollary: returns true if a relation of this name is known to the relation manager.
public isMagicProperty ( string $name ) : boolean
$name string The name of a potential magic property
Результат boolean
    public function isMagicProperty($name)
    {
        return isset($this->relations[$name]);
    }