| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | protected function configure() |
||
| 10 | { |
||
| 11 | $this |
||
| 12 | ->addDefaults() |
||
| 13 | ->setName('dnscheck') |
||
| 14 | ->setDescription('Get the current DNS settings for all domains configured for this project') |
||
| 15 | ->addArgument('project', InputArgument::OPTIONAL, 'The name of the Skylab project') |
||
| 16 | ->setHelp(<<<EOT |
||
| 17 | The <info>nameservercheck</info> command get the current DNS settings for all domains configured for this project. |
||
| 18 | |||
| 19 | <info>php skylab.phar nameservercheck testproject</info> |
||
| 20 | EOT |
||
| 21 | ); |
||
| 22 | } |
||
| 23 | |||
| 45 |