| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | protected function configure() |
||
| 20 | { |
||
| 21 | parent::configure(); |
||
| 22 | $this |
||
| 23 | ->setName('mongodb:database:create') |
||
| 24 | ->setDescription('Creates the configured database') |
||
| 25 | ->addOption('if-not-exists', null, InputOption::VALUE_NONE, 'Don\'t trigger an error, when the database already exists') |
||
| 26 | ; |
||
| 27 | } |
||
| 28 | |||
| 36 | } |