| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 60 | public function start(): bool |
||
| 61 | { |
||
| 62 | $deltas = $this->getopt->getOption('delta'); |
||
| 63 | if ($deltas === null) { |
||
| 64 | $deltas = []; |
||
| 65 | } else { |
||
| 66 | $deltas = explode(',', $deltas); |
||
| 67 | } |
||
| 68 | |||
| 69 | return $this->migration->start( |
||
| 70 | (bool) $this->getopt->getOption('force'), |
||
| 71 | (bool) $this->getopt->getOption('ignore'), |
||
| 72 | $deltas |
||
| 73 | ); |
||
| 74 | } |
||
| 75 | } |
||
| 76 |