| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | protected function configure() |
||
| 13 | { |
||
| 14 | $this->setName("plugin") |
||
| 15 | ->setDescription("Manages plugins for your project") |
||
| 16 | ->addArgument( |
||
| 17 | "command_name", |
||
| 18 | InputArgument::REQUIRED, |
||
| 19 | "Command to execute. Can be add or remove" |
||
| 20 | )->addArgument( |
||
| 21 | "plugin_name", |
||
| 22 | InputArgument::REQUIRED, |
||
| 23 | "Plugin to work with" |
||
| 24 | ); |
||
| 25 | } |
||
| 26 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 47 |