Skip to content

Commit

Permalink
indent code
Browse files Browse the repository at this point in the history
  • Loading branch information
samayo committed Sep 18, 2017
1 parent 655f15f commit b0aba00
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/Logger.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,20 @@ class Logger implements \ArrayAccess
const AUTOLOG = true;

protected $defaultTitle = [
self::INFO => "new info from your logs",
self::ALERT => "new alert from your logs",
self::ERROR => "new error from your logs",
self::SIMPLE => "SIMPLE",
self::VERBOSE => "VERBOSE",
self::INFO => "new info from your logs",
self::ALERT => "new alert from your logs",
self::ERROR => "new error from your logs",
self::SIMPLE => "SIMPLE",
self::VERBOSE => "VERBOSE",
];

protected $config = [
'email' => 'user@domain.tld',
"nginx.log" => "/var/log/nginx/error.log",
"php-fpm.log" => "/var/log/php-fpm/error.log",
"mariadb.log" => "/var/log/mariadb/mariadb.log",
'error.log' => '',
'access.log' => ''
'email' => 'user@domain.tld',
"nginx.log" => "/var/log/nginx/error.log",
"php-fpm.log" => "/var/log/php-fpm/error.log",
"mariadb.log" => "/var/log/mariadb/mariadb.log",
'error.log' => '',
'access.log' => ''
];

private $pdo = null;
Expand Down

0 comments on commit b0aba00

Please sign in to comment.