MigrationStep::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 3
dl 0
loc 5
ccs 4
cts 4
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Kaliop\eZMigrationBundle\API\Value;
4
5
/**
6
 * @property-read string $type
7
 * @property-read array $dsl
8
 * @property-read array $context
9
 */
10
class MigrationStep extends AbstractValue
11
{
12
    protected $type;
13
    protected $dsl;
14
    protected $context;
15
16 141
    public function __construct($type, array $dsl = array(), array $context = array())
17
    {
18 141
        $this->type = $type;
0 ignored issues
show
Bug introduced by
The property type is declared read-only in Kaliop\eZMigrationBundle\API\Value\MigrationStep.
Loading history...
19 141
        $this->dsl = $dsl;
0 ignored issues
show
Bug introduced by
The property dsl is declared read-only in Kaliop\eZMigrationBundle\API\Value\MigrationStep.
Loading history...
20 141
        $this->context = $context;
0 ignored issues
show
Bug introduced by
The property context is declared read-only in Kaliop\eZMigrationBundle\API\Value\MigrationStep.
Loading history...
21 141
    }
22
23
    /**
24
     * Allow the class to be serialized to php using var_export
25
     * @param array $data
26
     * @return static
27
     */
28
    public static function __set_state(array $data)
29
    {
30
        return new static(
31
            $data['type'],
32
            $data['dsl'],
33
            $data['context']
34
        );
35
    }
36
}
37