Code style fixes

This commit is contained in:
Dmitry Khomutov 2016-04-20 16:30:26 +06:00
commit 5b9c1d32f1
16 changed files with 1219 additions and 1360 deletions

View file

@ -8,17 +8,17 @@
* @link https://www.phptesting.org/
*/
return array(
return [
/** Loggers attached to every command */
"_" => function() {
return array(
return [
new \Monolog\Handler\StreamHandler(__DIR__ . DIRECTORY_SEPARATOR . 'errors.log', \Monolog\Logger::ERROR),
);
];
},
/** Loggers for the RunCommand */
'RunCommand' => function() {
return array(
return [
new \Monolog\Handler\RotatingFileHandler(__DIR__ . DIRECTORY_SEPARATOR . 'everything', 3, \Monolog\Logger::DEBUG),
);
];
},
);
];