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;
    }