@@ -62,15 +62,15 @@ |
||
62 | 62 | */ |
63 | 63 | protected function registerMacros() |
64 | 64 | { |
65 | - Route::macro('allowFrom', function (string ...$countries) { |
|
65 | + Route::macro('allowFrom', function(string ...$countries) { |
|
66 | 66 | return new GeoRoute($this, $countries, true); |
67 | 67 | }); |
68 | 68 | |
69 | - Route::macro('denyFrom', function (string ...$countries) { |
|
69 | + Route::macro('denyFrom', function(string ...$countries) { |
|
70 | 70 | return new GeoRoute($this, $countries, false); |
71 | 71 | }); |
72 | 72 | |
73 | - Route::macro('from', function (string ...$countries) { |
|
73 | + Route::macro('from', function(string ...$countries) { |
|
74 | 74 | return new GeoRoute($this, $countries, true); |
75 | 75 | }); |
76 | 76 | } |