Completed
Push — master ( 8144a4...aab9ae )
by Raffael
19:04 queued 17:02
created
src/Http/Router/Route.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@
 block discarded – undo
220 220
     /**
221 221
      * Set clas
222 222
      *
223
-     * @param   string|object $class
223
+     * @param   string $class
224 224
      * @return  Route
225 225
      */
226 226
     public function setClass($class): Route
Please login to merge, or discard this patch.
src/Config/Xml.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
             if (count($simplexml_child->children()) === 0) {
108 108
                 if (!isset($simplexml_to->{$simplexml_child->getName()})) {
109 109
                     $simplexml_to->addChild($simplexml_child->getName(), htmlspecialchars((string)$simplexml_child));
110
-                } elseif($replace === true && count($simplexml_to->{$simplexml_child->getName()}->children()) === 0) {
110
+                } elseif ($replace === true && count($simplexml_to->{$simplexml_child->getName()}->children()) === 0) {
111 111
                     $simplexml_to->{$simplexml_child->getName()} = htmlspecialchars((string)$simplexml_child);
112 112
                 }
113 113
             } else {
Please login to merge, or discard this patch.
src/Auth/Adapter/Basic/AbstractBasic.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
      * @param  string $username
111 111
      * @return array
112 112
      */
113
-    protected abstract function findIdentity(string $username): ?array;
113
+    protected abstract function findIdentity(string $username): ? array;
114 114
 
115 115
 
116 116
     /**
Please login to merge, or discard this patch.
src/Auth/AttributeMap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
 
83 83
                 switch ($value['type']) {
84 84
                     case 'array':
85
-                        $arr =  (array)$data[$value['attr']];
85
+                        $arr = (array)$data[$value['attr']];
86 86
                         unset($arr['count']);
87 87
                         $attrs[$attr] = $arr;
88 88
                     break;
Please login to merge, or discard this patch.
src/Http/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@
 block discarded – undo
190 190
             $this->terminate();
191 191
         }
192 192
         
193
-        if($this->body instanceof Closure) {
193
+        if ($this->body instanceof Closure) {
194 194
             $body = $this->body();
195 195
         } else {
196 196
             $body = $this->body;
Please login to merge, or discard this patch.