Completed
Push — ezp25946-migrate_files_to_othe... ( 3ba3f5...7b23be )
by
unknown
13:29
created

MigrationHandler   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 25
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A setIODataHandlersByIdentifiers() 0 10 1
1
<?php
2
3
/**
4
 * File containing the MigrationHandler class.
5
 *
6
 * @copyright Copyright (C) eZ Systems AS. All rights reserved.
7
 * @license For full copyright and license information view LICENSE file distributed with this source code.
8
 */
9
namespace eZ\Bundle\EzPublishIOBundle\Migration;
10
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(
26
        $fromMetadataHandlerIdentifier,
27
        $fromBinarydataHandlerIdentifier,
28
        $toMetadataHandlerIdentifier,
29
        $toBinarydataHandlerIdentifier
30
    ) {
31
        //TODO
32
33
        return $this;
34
    }
35
}
36