| 1 | <?php |
||
| 11 | abstract class MigrationHandler implements MigrationHandlerInterface |
||
| 12 | { |
||
| 13 | /** @var \eZ\Publish\Core\IO\IOMetadataHandler */ |
||
| 14 | protected $fromMetadataHandler; |
||
| 15 | |||
| 16 | /** @var \eZ\Publish\Core\IO\IOBinarydataHandler */ |
||
| 17 | protected $fromBinarydataHandler; |
||
| 18 | |||
| 19 | /** @var \eZ\Publish\Core\IO\IOMetadataHandler */ |
||
| 20 | protected $toMetadataHandler; |
||
| 21 | |||
| 22 | /** @var \eZ\Publish\Core\IO\IOBinarydataHandler */ |
||
| 23 | protected $toBinarydataHandler; |
||
| 24 | |||
| 25 | public function setIODataHandlersByIdentifiers( |
||
| 35 | } |
||
| 36 |