| 1 | <?php |
||
| 15 | class GenerateCommand extends AbstractCommand |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Boolean rout params |
||
| 19 | * |
||
| 20 | * @var array |
||
| 21 | */ |
||
| 22 | protected $booleanParams = [ |
||
| 23 | '--quiet', |
||
| 24 | '-q', |
||
| 25 | '-n', |
||
| 26 | '--verbose', |
||
| 27 | '-v', |
||
| 28 | '-vv', |
||
| 29 | '-vvv' |
||
| 30 | ]; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get input command |
||
| 34 | * {@inheritDoc} |
||
| 35 | * @see \Reddogs\Doctrine\Migrations\AbstractCommand::getInputCommand() |
||
| 36 | */ |
||
| 37 | public function getInputCommand(Route $route) |
||
| 51 | } |