Completed
Push — master ( a51466...8daf75 )
by Raffael
02:47
created
src/Http/Response.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -276,13 +276,13 @@
 block discarded – undo
276 276
 
277 277
 
278 278
     /**
279
-    * Converts mixed data to XML
280
-    *
281
-    * @param    mixed $data
282
-    * @param    SimpleXMLElement $xml
283
-    * @param    string $child_name
284
-    * @return   string
285
-    */
279
+     * Converts mixed data to XML
280
+     *
281
+     * @param    mixed $data
282
+     * @param    SimpleXMLElement $xml
283
+     * @param    string $child_name
284
+     * @return   string
285
+     */
286 286
     public function toXML($data, Config $xml, string $child_name): string
287 287
     {
288 288
         if (is_array($data)) {
Please login to merge, or discard this patch.
src/Http/Router.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@
 block discarded – undo
209 209
                     }
210 210
                 } else {
211 211
                     $this->logger->debug('requested path ['.$this->path.'] does not match route ['.$route->getPath().']', [
212
-                         'category' => get_class($this),
212
+                            'category' => get_class($this),
213 213
                     ]);
214 214
                 }
215 215
             }
Please login to merge, or discard this patch.
src/Config/Xml.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
                 if (!isset($simplexml_to->{$simplexml_child->getName()})) {
109 109
                     $simplexml_to->addChild($simplexml_child->getName(), htmlspecialchars((string)$simplexml_child));
110 110
                 } elseif($replace === true && count($simplexml_to->{$simplexml_child->getName()}->children()) === 0) {
111
-                   $simplexml_to->{$simplexml_child->getName()} = htmlspecialchars((string)$simplexml_child);
111
+                    $simplexml_to->{$simplexml_child->getName()} = htmlspecialchars((string)$simplexml_child);
112 112
                 }
113 113
             } else {
114 114
                 $this->appendSimplexml($simplexml_to->{$simplexml_child->getName()}, $simplexml_child, $replace);
Please login to merge, or discard this patch.
src/Log.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
         foreach ($this->adapter as $adapter) {
166 166
             $prio = $adapter->getLevel();
167 167
  
168
-           if (self::PRIORITIES[$level] <= $prio) {
168
+            if (self::PRIORITIES[$level] <= $prio) {
169 169
                 $msg = $this->_format($message, $adapter->getFormat(), $adapter->getDateFormat(), $level, $context);
170 170
                 $adapter->log($level, $msg);
171 171
             }
Please login to merge, or discard this patch.
src/Auth/AttributeMap.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,8 +84,8 @@
 block discarded – undo
84 84
                 switch ($value['type']) {
85 85
                     case 'array':
86 86
                          $arr =  (array)$data[$value['attr']];
87
-                          unset($arr['count']);
88
-                          $attrs[$attr] = $arr;
87
+                            unset($arr['count']);
88
+                            $attrs[$attr] = $arr;
89 89
                     break;
90 90
                         
91 91
                     case 'string':
Please login to merge, or discard this patch.
src/Auth.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -242,7 +242,7 @@
 block discarded – undo
242 242
         }
243 243
         
244 244
         $this->logger->warning("all authentication adapter have failed", [
245
-           'category' => get_class($this)
245
+            'category' => get_class($this)
246 246
         ]);
247 247
 
248 248
         return false;
Please login to merge, or discard this patch.