Passed
Push — main ( 5eb528...8b73d6 )
by Dimitri
12:35
created
src/Helpers/scl.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -647,7 +647,7 @@
 block discarded – undo
647 647
     }
648 648
 
649 649
     return ($action === 'encrypt') ? base64_encode($return) : $return;
650
-      // On renvoie la chaine encrypter ou decrypter
650
+        // On renvoie la chaine encrypter ou decrypter
651 651
 }
652 652
 
653 653
 /**
Please login to merge, or discard this patch.
src/Router/Dispatcher.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -799,9 +799,9 @@
 block discarded – undo
799 799
             return $returned;
800 800
         }
801 801
 
802
-		if ($returned instanceof Responsable) {
803
-			return $returned->toResponse($this->request);
804
-		}
802
+        if ($returned instanceof Responsable) {
803
+            return $returned->toResponse($this->request);
804
+        }
805 805
 
806 806
         if (is_object($returned)) {
807 807
             if (method_exists($returned, '__toString')) {
Please login to merge, or discard this patch.
src/Middlewares/BodyParser.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -82,9 +82,9 @@
 block discarded – undo
82 82
      */
83 83
     public function setMethods(?array $methods): self
84 84
     {
85
-		if (is_array($methods)) {
86
-			$this->methods = $methods;
87
-		}
85
+        if (is_array($methods)) {
86
+            $this->methods = $methods;
87
+        }
88 88
 
89 89
         return $this;
90 90
     }
Please login to merge, or discard this patch.