| Conditions | 3 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Codengine\CustomMigrations\Commands; |
||
| 8 | public function call($command, array $arguments = array()) |
||
| 9 | { |
||
| 10 | if($command === 'migrate' || $command === 'migrate:reset') |
||
| 11 | { |
||
| 12 | $arguments['--type'] = $this->input->getOption('type'); |
||
| 13 | |||
| 14 | } |
||
| 15 | |||
| 16 | return parent::call($command, $arguments); |
||
| 17 | } |
||
| 18 | } |