1 | <?php |
||
13 | abstract class MigrationHandler implements MigrationHandlerInterface |
||
14 | { |
||
15 | /** @var \eZ\Bundle\EzPublishIOBundle\ApiLoader\HandlerFactory */ |
||
16 | private $metadataHandlerFactory; |
||
17 | |||
18 | /** @var \eZ\Bundle\EzPublishIOBundle\ApiLoader\HandlerFactory */ |
||
19 | private $binarydataHandlerFactory; |
||
20 | |||
21 | /** @var \eZ\Publish\Core\IO\IOMetadataHandler */ |
||
22 | protected $fromMetadataHandler; |
||
23 | |||
24 | /** @var \eZ\Publish\Core\IO\IOBinarydataHandler */ |
||
25 | protected $fromBinarydataHandler; |
||
26 | |||
27 | /** @var \eZ\Publish\Core\IO\IOMetadataHandler */ |
||
28 | protected $toMetadataHandler; |
||
29 | |||
30 | /** @var \eZ\Publish\Core\IO\IOBinarydataHandler */ |
||
31 | protected $toBinarydataHandler; |
||
32 | |||
33 | public function __construct(HandlerFactory $metadataHandlerFactory, HandlerFactory $binarydataHandlerFactory) |
||
38 | |||
39 | public function setIODataHandlersByIdentifiers( |
||
52 | } |
||
53 |