Neos\Media\Domain\Model\Video::__construct PHP Method

__construct() public method

Constructs the object and sets default values for width and height
public __construct ( PersistentResource $resource )
$resource Neos\Flow\ResourceManagement\PersistentResource
    public function __construct(PersistentResource $resource)
    {
        parent::__construct($resource);
        $this->width = -1;
        $this->height = -1;
    }