Completed
Push — master ( 37e69c...58ba32 )
by Hong
03:12
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/Shareable/ShareableTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,6 +94,7 @@  discard block
 block discarded – undo
94 94
 
95 95
     /**
96 96
      * {@inheritDoc}
97
+     * @param string $scope
97 98
      */
98 99
     public function addScope(/*# string */ $scope)
99 100
     {
@@ -143,7 +144,6 @@  discard block
 block discarded – undo
143 144
     /**
144 145
      * Get all unique scopes for $this
145 146
      *
146
-     * @param  string|array $scopes
147 147
      * @return array
148 148
      * @access protected
149 149
      */
Please login to merge, or discard this patch.