@@ -28,7 +28,7 @@ |
||
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 |
@@ -63,15 +63,15 @@ |
||
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 | } |