Completed
Branch master (d239d5)
by leo
02:31
created
src/Utils/helpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      * @param bool   $absolute
14 14
      * @return string
15 15
      */
16
-    function cas_route($name, $parameters = [], $absolute = true)
16
+    function cas_route($name, $parameters = [ ], $absolute = true)
17 17
     {
18 18
         $name = config('cas.router.name_prefix').$name;
19 19
 
Please login to merge, or discard this patch.
src/Contracts/Interactions/UserLogin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,13 +40,13 @@
 block discarded – undo
40 40
      * @param array   $errors
41 41
      * @return Response
42 42
      */
43
-    public function showLoginPage(Request $request, array $errors = []);
43
+    public function showLoginPage(Request $request, array $errors = [ ]);
44 44
 
45 45
     /**
46 46
      * @param array $errors
47 47
      * @return Response
48 48
      */
49
-    public function redirectToHome(array $errors = []);
49
+    public function redirectToHome(array $errors = [ ]);
50 50
 
51 51
     /**
52 52
      * @param Request  $request
Please login to merge, or discard this patch.
src/Events/CasUserLoginEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function broadcastOn()
39 39
     {
40
-        return [];
40
+        return [ ];
41 41
     }
42 42
 
43 43
     /**
Please login to merge, or discard this patch.
src/Events/CasUserLogoutEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function broadcastOn()
39 39
     {
40
-        return [];
40
+        return [ ];
41 41
     }
42 42
 
43 43
     /**
Please login to merge, or discard this patch.