Files
ezmigrationbundle/Core/FieldHandler/FileFieldHandler.php
2017-05-09 23:50:56 +01:00

18 lines
381 B
PHP

<?php
namespace Kaliop\eZMigrationBundle\Core\FieldHandler;
use eZ\Publish\Core\IO\UrlDecorator;
class FileFieldHandler extends AbstractFieldHandler
{
protected $ioRootDir;
protected $ioDecorator;
public function __construct($ioRootDir, UrlDecorator $ioDecorator=null)
{
$this->ioRootDir = $ioRootDir;
$this->ioDecorator = $ioDecorator;
}
}