Completed
Push — master ( be649c...a88843 )
by Rafael
02:27
created
src/ArrayDebugger.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
 
12 12
   public function __construct() {
13 13
 
14
-    $this->logger = function($type, $key, $value = null,  array $backtrace ) {
14
+    $this->logger = function($type, $key, $value = null, array $backtrace) {
15 15
 
16
-      $log = $type.' | Key: '.$key;
16
+      $log = $type . ' | Key: ' . $key;
17 17
       
18 18
       if ($type === static::TYPE_SET) {
19 19
         $log .= ' -> Value:' . $value;
Please login to merge, or discard this patch.
src/Log.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
   private function __construct() {
11 11
 
12 12
     $this->oLogger = new \Monolog\Logger("PHPUtils");
13
-    $this->oLogger->pushHandler( new \Monolog\Handler\StreamHandler("/tmp/PHPUtils.log") );
14
-    $this->oLogger->pushHandler( new \Monolog\Handler\ChromePHPHandler() );
15
-    $this->oLogger->pushHandler( new \Monolog\Handler\FirePHPHandler() );
13
+    $this->oLogger->pushHandler(new \Monolog\Handler\StreamHandler("/tmp/PHPUtils.log"));
14
+    $this->oLogger->pushHandler(new \Monolog\Handler\ChromePHPHandler());
15
+    $this->oLogger->pushHandler(new \Monolog\Handler\FirePHPHandler());
16 16
   }
17 17
 
18 18
   public function log() {}
Please login to merge, or discard this patch.