Completed
Pull Request — master (#37)
by Raed
15:56
created
src/GeoRoutesServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,15 +62,15 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.