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

__set() public method

public __set ( $propertyName, $propertyValue )
    public function __set($propertyName, $propertyValue)
    {
        if ($propertyName === 'path') {
            $this->inputUri = $propertyValue;
            return;
        }
        throw new PropertyNotFoundException($propertyName, get_class($this));
    }