Completed
Push — master ( 998c8e...4e843c )
by Hong
03:08
created
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.
src/Phossa2/Shared/Message/Formatter/DefaultFormatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      */
50 50
     protected function stringize(array &$arguments)
51 51
     {
52
-        array_walk($arguments, function (&$value) {
52
+        array_walk($arguments, function(&$value) {
53 53
             $value = is_string($value) ? $value : json_encode($value, 0, 2);
54 54
         });
55 55
         return $this;
Please login to merge, or discard this patch.
src/Phossa2/Shared/Delegator/DelegatorTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
      * Try HAS in registry
136 136
      *
137 137
      * @param  object $registry
138
-     * @param  name $key
138
+     * @param  string $key
139 139
      * @return bool
140 140
      * @access protected
141 141
      */
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      * Try GET from registry
149 149
      *
150 150
      * @param  object $registry
151
-     * @param  name $key
151
+     * @param  string $key
152 152
      * @return mixed|null
153 153
      * @access protected
154 154
      */
Please login to merge, or discard this patch.