Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | protected function configure() |
||
28 | { |
||
29 | $this |
||
30 | ->setName('lookup') |
||
31 | ->setDescription('Look up a package URL by name') |
||
32 | ->addArgument('package', InputArgument::REQUIRED, 'Choose a package.') |
||
33 | ->setHelp(<<<'EOT' |
||
34 | The <info>%command.name%</info> command is used for search with exact match the repository URL package |
||
35 | |||
36 | <info>php %command.full_name% packageName</info> |
||
37 | EOT |
||
38 | ); |
||
39 | } |
||
40 | |||
59 |