LeanMapper\Reflection\EntityReflection::getEntityProperty PHP Method

getEntityProperty() public method

Gets requested entity's property
public getEntityProperty ( string $name ) : Property | null
$name string
return Property | null
    public function getEntityProperty($name)
    {
        return isset($this->properties[$name]) ? $this->properties[$name] : null;
    }