eZ\Publish\Core\FieldType\Image\Value::__get PHP Method

__get() public method

public __get ( $propertyName )
    public function __get($propertyName)
    {
        if ($propertyName === 'path') {
            return $this->inputUri ?: $this->id;
        }
        throw new PropertyNotFoundException($propertyName, get_class($this));
    }