Neos\Flow\Security\Authorization\Privilege\Entity\Doctrine\PropertyConditionGenerator::getObjectValueByPath PHP Method

getObjectValueByPath() public method

Redirects directly to \Neos\Utility\ObjectAccess::getPropertyPath($result, $propertyPath) This is only needed for unit tests!
public getObjectValueByPath ( mixed $object, string $path ) : mixed
$object mixed The object to fetch the property from
$path string The path to the property to be fetched
return mixed The property value
    public function getObjectValueByPath($object, $path)
    {
        return ObjectAccess::getPropertyPath($object, $path);
    }