for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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;
}