Passed
Pull Request — master (#24)
by Raed
02:27
created
src/CallbacksRegistrar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      *
29 29
      * @var boolean
30 30
      */
31
-    protected static $loadedDefaultCallbacks= false;
31
+    protected static $loadedDefaultCallbacks = false;
32 32
 
33 33
     /**
34 34
      * Determines whether the custom callbacks
Please login to merge, or discard this patch.
src/GeoRoutesServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -63,15 +63,15 @@
 block discarded – undo
63 63
      */
64 64
     protected function registerMacros()
65 65
     {
66
-        Route::macro('allowFrom', function (string ...$countries) {
66
+        Route::macro('allowFrom', function(string ...$countries) {
67 67
             return new GeoRoute($this, $countries, true);
68 68
         });
69 69
 
70
-        Route::macro('denyFrom', function (string ...$countries) {
70
+        Route::macro('denyFrom', function(string ...$countries) {
71 71
             return new GeoRoute($this, $countries, false);
72 72
         });
73 73
 
74
-        Router::macro('geogroup', function (array $attributes, callable $routes) {
74
+        Router::macro('geogroup', function(array $attributes, callable $routes) {
75 75
             return new GeoGroup($attributes, $routes);
76 76
         });
77 77
     }
Please login to merge, or discard this patch.