@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | $this->webRouter->group([ |
85 | 85 | 'middleware' => ['web'], |
86 | 86 | 'namespace' => $controllerNamespace, |
87 | - ], function (LaravelRouter $router) use ($file) { |
|
87 | + ], function(LaravelRouter $router) use ($file) { |
|
88 | 88 | require $file->getPathname(); |
89 | 89 | }); |
90 | 90 | } |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | $apiVersionNumber = $this->getRouteFileVersionNumber($file); |
101 | 101 | |
102 | 102 | $this->apiRouter->version('v' . $apiVersionNumber, |
103 | - function (DingoApiRouter $router) use ($file, $containerPath, $containersNamespace) { |
|
103 | + function(DingoApiRouter $router) use ($file, $containerPath, $containersNamespace) { |
|
104 | 104 | |
105 | 105 | $controllerNamespace = $containersNamespace . '\\Containers\\' . basename($containerPath) . '\\UI\API\Controllers'; |
106 | 106 | |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | 'limit' => Config::get('hello.api.limit'), |
114 | 114 | // The API limit expiry time. |
115 | 115 | 'expires' => Config::get('hello.api.limit_expires'), |
116 | - ], function ($router) use ($file) { |
|
116 | + ], function($router) use ($file) { |
|
117 | 117 | |
118 | 118 | require $file->getPathname(); |
119 | 119 |