Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | protected function configure() |
||
21 | { |
||
22 | $this |
||
23 | ->setName('config:get') |
||
24 | ->setDescription('Look up a specific configuration value') |
||
25 | ->addArgument('class', InputArgument::REQUIRED) |
||
26 | ->addArgument('property', InputArgument::REQUIRED); |
||
27 | |||
28 | $this->setHelp(<<<HELP |
||
29 | Look up a specific configuration value and output it directly. This command can be used for build processes, |
||
30 | automated scripts, quick checks etc where raw output is required outside of the SilverStripe application. |
||
31 | HELP |
||
32 | ); |
||
33 | } |
||
34 | |||
50 |