Completed
Push — master ( f4309a...8ddcca )
by Hong
03:09
created
src/Phossa2/Shared/Message/Formatter/DefaultFormatter.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,9 +48,8 @@
 block discarded – undo
48 48
      */
49 49
     protected function stringize(array &$arguments)
50 50
     {
51
-        array_walk($arguments, function (&$value) {
52
-            $value = is_scalar($value) ? (string) $value :
53
-                substr(print_r($value, true), 0, 50);
51
+        array_walk($arguments, function(&$value) {
52
+            $value = is_scalar($value) ? (string) $value : substr(print_r($value, true), 0, 50);
54 53
         });
55 54
         return $this;
56 55
     }
Please login to merge, or discard this patch.
src/Phossa2/Shared/Reader/Reader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
         }
55 55
 
56 56
         /* @var ReaderInterface $class */
57
-        $class  = static::getNameSpace() . '\\' . ucfirst($suffix) . 'Reader';
57
+        $class = static::getNameSpace() . '\\' . ucfirst($suffix) . 'Reader';
58 58
 
59 59
         return $class::readFile($path);
60 60
     }
Please login to merge, or discard this patch.