for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File containing the MigrationHandler class.
*
* @copyright Copyright (C) eZ Systems AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
namespace eZ\Bundle\EzPublishIOBundle\Migration;
abstract class MigrationHandler implements MigrationHandlerInterface
{
/** @var \eZ\Publish\Core\IO\IOMetadataHandler */
protected $fromMetadataHandler;
/** @var \eZ\Publish\Core\IO\IOBinarydataHandler */
protected $fromBinarydataHandler;
protected $toMetadataHandler;
protected $toBinarydataHandler;
public function setIODataHandlersByIdentifiers(
$fromMetadataHandlerIdentifier,
$fromBinarydataHandlerIdentifier,
$toMetadataHandlerIdentifier,
$toBinarydataHandlerIdentifier
) {
//TODO
return $this;
}