Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
70 | public function start(): bool |
||
71 | { |
||
72 | $deltas = $this->getopt->getOption('delta'); |
||
73 | if ($deltas === null) { |
||
74 | $deltas = []; |
||
75 | } else { |
||
76 | $deltas = explode(',', $deltas); |
||
77 | } |
||
78 | |||
79 | return $this->migration->start( |
||
80 | (bool) $this->getopt->getOption('force'), |
||
81 | (bool) $this->getopt->getOption('ignore'), |
||
82 | $deltas |
||
83 | ); |
||
84 | } |
||
85 | } |
||
86 |