Pimcore\Model\Asset\Video\ImageThumbnail::__construct PHP Method

__construct() public method

ImageThumbnail constructor.
public __construct ( $asset, null $config = null, null $timeOffset = null, null $imageAsset = null )
$asset
$config null
$timeOffset null
$imageAsset null
    public function __construct($asset, $config = null, $timeOffset = null, $imageAsset = null)
    {
        $this->asset = $asset;
        $this->timeOffset = $timeOffset;
        $this->imageAsset = $imageAsset;
        $this->config = $this->createConfig($config);
    }