Test Failed
Branch master (6ae3ad)
by Pavel
02:03
created
src/LaravelDoctrine/Rest/Request/IndexRestRequest.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      */
28 28
     public function ability()
29 29
     {
30
-         return 'index';
30
+            return 'index';
31 31
     }
32 32
 
33 33
     /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     {
72 72
         if ($orderBy = $this->get('orderBy')) {
73 73
             if (is_string($orderBy)) {
74
-                return [$orderBy => $this->get('ascending', true) ? 'ASC' : 'DESC'];
74
+                return [ $orderBy => $this->get('ascending', true) ? 'ASC' : 'DESC' ];
75 75
             }
76 76
         }
77 77
 
Please login to merge, or discard this patch.
src/LaravelDoctrine/Rest/RestRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function rules()
25 25
     {
26
-        return [];
26
+        return [ ];
27 27
     }
28 28
 
29 29
     /**
Please login to merge, or discard this patch.