Passed
Push — 2.x ( 3b7a15...f6a0a4 )
by Terry
02:08
created
src/Firewall/Session.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
      * @return void
176 176
      */
177 177
     public function init(
178
-             $driver, 
178
+                $driver, 
179 179
         int  $gcExpires     = 300, 
180 180
         int  $gcProbability = 1, 
181 181
         int  $gcDivisor     = 100, 
Please login to merge, or discard this patch.
src/Firewall/Kernel.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -286,7 +286,7 @@
 block discarded – undo
286 286
      */
287 287
     protected $firewallType = 'self';
288 288
 
289
-   /**
289
+    /**
290 290
      * The reason code of a user to be allowed or denied.
291 291
      *
292 292
      * @var int|null
Please login to merge, or discard this patch.
src/Firewall/Integration/CodeIgniter4.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -66,18 +66,18 @@  discard block
 block discarded – undo
66 66
         }
67 67
     }
68 68
 
69
-	/**
69
+    /**
70 70
      * Shieldon middleware invokable class.
71 71
      *
72
-	 * @param Request $request
73
-	 *
74
-	 * @return mixed
75
-	 */
76
-	public function before(Request $request)
77
-	{
78
-		if ($request->isCLI()) {
79
-			return;
80
-		}
72
+     * @param Request $request
73
+     *
74
+     * @return mixed
75
+     */
76
+    public function before(Request $request)
77
+    {
78
+        if ($request->isCLI()) {
79
+            return;
80
+        }
81 81
 
82 82
         // CodeIgniter 4 is not a PSR-7 compatible framework, therefore we don't 
83 83
         // pass the Reqest and Reposne to Firewall instance.
@@ -100,18 +100,18 @@  discard block
 block discarded – undo
100 100
             $httpResolver = new HttpResolver();
101 101
             $httpResolver($response);
102 102
         }
103
-	}
104
-
105
-	/**
106
-	 * We don't have anything to do here.
107
-	 *
108
-	 * @param Response $request
109
-	 * @param Response $response
110
-	 *
111
-	 * @return mixed
112
-	 */
113
-	public function after(Request $request, Response $response)
114
-	{
103
+    }
104
+
105
+    /**
106
+     * We don't have anything to do here.
107
+     *
108
+     * @param Response $request
109
+     * @param Response $response
110
+     *
111
+     * @return mixed
112
+     */
113
+    public function after(Request $request, Response $response)
114
+    {
115 115
 
116 116
     }
117 117
 }
118 118
\ No newline at end of file
Please login to merge, or discard this patch.