Completed
Push — master ( 984bc1...bcdfa3 )
by Raed
12s queued 10s
created
src/GeoRoutesServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     {
35 35
         $router = $this->app->make('router');
36 36
 
37
-        $this->app->singleton('georoutes.callbacks', function () {
37
+        $this->app->singleton('georoutes.callbacks', function() {
38 38
             $registrar = new CallbackRegistrar();
39 39
             $registrar->loadCallbacks(config('geo-routes.routes.callbacks'));
40 40
 
@@ -69,15 +69,15 @@  discard block
 block discarded – undo
69 69
      */
70 70
     protected function registerMacros()
71 71
     {
72
-        Route::macro('allowFrom', function (string ...$countries) {
72
+        Route::macro('allowFrom', function(string ...$countries) {
73 73
             return new GeoRoute($this, $countries, 'allow');
74 74
         });
75 75
 
76
-        Route::macro('denyFrom', function (string ...$countries) {
76
+        Route::macro('denyFrom', function(string ...$countries) {
77 77
             return new GeoRoute($this, $countries, 'deny');
78 78
         });
79 79
 
80
-        Route::macro('from', function (string ...$countries) {
80
+        Route::macro('from', function(string ...$countries) {
81 81
             return new GeoRoute($this, $countries, 'allow');
82 82
         });
83 83
     }
Please login to merge, or discard this patch.