LeanMapper\Reflection\EntityReflection::getEntityProperty PHP Метод

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

Gets requested entity's property
public getEntityProperty ( string $name ) : Property | null
$name string
Результат Property | null
    public function getEntityProperty($name)
    {
        return isset($this->properties[$name]) ? $this->properties[$name] : null;
    }