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:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-02-02 02:56:54 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-02-02 02:57:59 +0300
commit03ea8fb3ec54285bdd63cdada015aa67aec1c6ee (patch)
tree1321a8a093e0fbecaf763ad945dc059919c199a7 /config/environment
parentfe19a2c02ff746518b2a0ce5a704cfc3aedbba36 (diff)
Updated composer and PHP-DI with latest changes
Diffstat (limited to 'config/environment')
-rw-r--r--config/environment/cli.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/environment/cli.php b/config/environment/cli.php
index f924c31b20..2852c01007 100644
--- a/config/environment/cli.php
+++ b/config/environment/cli.php
@@ -12,7 +12,7 @@ return array(
'log.handlers' => array(
DI\link('Symfony\Bridge\Monolog\Handler\ConsoleHandler'),
),
- 'Symfony\Bridge\Monolog\Handler\ConsoleHandler' => DI\factory(function (ContainerInterface $c) {
+ 'Symfony\Bridge\Monolog\Handler\ConsoleHandler' => function (ContainerInterface $c) {
// Override the default verbosity map to make it more verbose by default
$verbosityMap = array(
OutputInterface::VERBOSITY_NORMAL => Logger::INFO,
@@ -23,7 +23,7 @@ return array(
$handler = new ConsoleHandler(null, true, $verbosityMap);
$handler->setFormatter(new ConsoleFormatter($c->get('log.console.format'), null, true, true));
return $handler;
- }),
+ },
'log.console.format' => '%start_tag%%level_name% %extra.class%[%datetime%]%end_tag% %message%' . PHP_EOL,
);