Наследование: extends Piwik\Plugin\ConsoleCommand
Пример #1
0
 private function activatePlugin(InputInterface $input, OutputInterface $output, $plugin)
 {
     $output->writeln('<comment>Warning: the command core:plugin is deprecated, use plugin:activate instead.</comment>');
     $command = new ActivatePlugin();
     $input = new ArrayInput(array('plugin' => $plugin));
     return $command->run($input, $output);
 }