Total Complexity | 4 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class ApplyMigrationPayload extends MigrationPayload |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $targetVersionFile; |
||
16 | |||
17 | /** |
||
18 | * @param string $targetVersionFile |
||
19 | */ |
||
20 | public function setTargetVersionFile($targetVersionFile) |
||
21 | { |
||
22 | $this->targetVersionFile = $targetVersionFile; |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | public function getTargetVersionPath() |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @return array |
||
35 | */ |
||
36 | public function getTargetConfiguration() |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * @return string |
||
43 | */ |
||
44 | public function getTargetVersionName() |
||
49 |