Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/Console.php')
-rw-r--r--core/Console.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/core/Console.php b/core/Console.php
index fac27d8036..cfed85a994 100644
--- a/core/Console.php
+++ b/core/Console.php
@@ -13,6 +13,7 @@ use Piwik\Container\StaticContainer;
use Piwik\Plugin\Manager as PluginManager;
use Symfony\Bridge\Monolog\Handler\ConsoleHandler;
use Symfony\Component\Console\Application;
+use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
@@ -65,10 +66,16 @@ class Console extends Application
{
if (!class_exists($command)) {
Log::warning(sprintf('Cannot add command %s, class does not exist', $command));
- } elseif (!is_subclass_of($command, 'Piwik\Plugin\ConsoleCommand')) {
+ } else if (!is_subclass_of($command, 'Piwik\Plugin\ConsoleCommand')) {
Log::warning(sprintf('Cannot add command %s, class does not extend Piwik\Plugin\ConsoleCommand', $command));
} else {
- $this->add(new $command);
+ /** @var Command $commandInstance */
+ $commandInstance = new $command;
+
+ // do not add the command if it already exists; this way we can add the command ourselves in tests
+ if (!$this->has($commandInstance->getName())) {
+ $this->add($commandInstance);
+ }
}
}