| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | |||
| 15 | const COMMAND = 'magium:configuration:build'; |
||
| 16 | |||
| 17 | protected function configure() |
||
| 18 | { |
||
| 19 | $this |
||
| 20 | ->setName(self::COMMAND) |
||
| 21 | ->setDescription('Build configuration') |
||
| 22 | ->setHelp( |
||
| 23 | 'This command will build the configuration object based off of configuration files and ' |
||
| 24 | . 'persistent storage data. By default, it will rebuild all contexts, but you can specify an ' |
||
| 25 | . 'individual context if you so like.') |
||
| 26 | ; |
||
| 27 | |||
| 45 |