| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 50% |
| Changes | 0 | ||
| 1 | <?php |
||
| 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()) |
|
| 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) |
||
| 37 |