Passed
Push — master ( bb463c...47732f )
by refat
04:00
created
Core/System/Http/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
   public function sendHeaders()
36 36
   {
37
-    foreach($this->headers as $header => $value)
37
+    foreach ($this->headers as $header => $value)
38 38
     {
39 39
       header($header . ':' . $value);
40 40
     }
Please login to merge, or discard this patch.
Core/System/Paginatio.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
   {
26 26
     $page = $this->app->request->get('page');
27 27
 
28
-    if (! is_numeric($page) || $page < 1) {
28
+    if (!is_numeric($page) || $page < 1) {
29 29
       $page = 1;
30 30
     }
31 31
 
Please login to merge, or discard this patch.
App/Middleware/Admin/RedirectMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
   public function handle(Application $app, $next)
11 11
   {
12 12
 
13
-    if (! $this->session->has('error') || $this->session->get('error') != true) {
13
+    if (!$this->session->has('error') || $this->session->get('error') != true) {
14 14
 
15 15
       $this->url->redirectTo('/');
16 16
 
Please login to merge, or discard this patch.