mirror of
https://github.com/JBDevLabs/ezmigrationbundle.git
synced 2026-03-24 17:02:18 +01:00
18 lines
381 B
PHP
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;
|
|
}
|
|
}
|