| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | protected function configure() |
||
| 26 | { |
||
| 27 | parent::configure(); |
||
| 28 | |||
| 29 | $this |
||
| 30 | ->setName('doctrine:mongodb:schema:update') |
||
| 31 | ->addOption('dm', null, InputOption::VALUE_REQUIRED, 'The document manager to use for this command.') |
||
| 32 | ->setHelp(<<<EOT |
||
| 33 | The <info>doctrine:mongodb:schema:update</info> command updates the default document manager's schema: |
||
| 34 | |||
| 35 | <info>./app/console doctrine:mongodb:schema:update</info> |
||
| 36 | |||
| 37 | You can also optionally specify the name of a document manager to update the schema for: |
||
| 38 | |||
| 39 | <info>./app/console doctrine:mongodb:schema:update --dm=default</info> |
||
| 40 | EOT |
||
| 41 | ); |
||
| 42 | } |
||
| 43 | |||
| 51 |