Completed
Push — master ( 558df7...329d64 )
by Hong
03:22
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/Reference/ReferenceTrait.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -101,6 +101,7 @@
 block discarded – undo
101 101
 
102 102
     /**
103 103
      * {@inheritDoc}
104
+     * @param string $subject
104 105
      */
105 106
     public function deReference(/*# string */ $subject)
106 107
     {
Please login to merge, or discard this patch.