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