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.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/Console.php b/core/Console.php
index 7a7629443f..bb6f4f7eff 100644
--- a/core/Console.php
+++ b/core/Console.php
@@ -12,6 +12,7 @@ use Piwik\Application\Environment;
use Piwik\Config\ConfigNotFoundException;
use Piwik\Container\StaticContainer;
use Piwik\Plugin\Manager as PluginManager;
+use Piwik\Version;
use Symfony\Bridge\Monolog\Handler\ConsoleHandler;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Command\Command;
@@ -30,7 +31,7 @@ class Console extends Application
{
$this->setServerArgsIfPhpCgi();
- parent::__construct();
+ parent::__construct('Piwik', Version::VERSION);
$this->environment = $environment;