Code style fixes
This commit is contained in:
parent
5371b8fc75
commit
5b9c1d32f1
16 changed files with 1219 additions and 1360 deletions
|
|
@ -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),
|
||||
);
|
||||
];
|
||||
},
|
||||
);
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue