@@ -18,8 +18,8 @@ discard block |
||
18 | 18 | */ |
19 | 19 | public function register() |
20 | 20 | { |
21 | - Notification::resolved(function (ChannelManager $service) { |
|
22 | - $service->extend('smsUp', function () { |
|
21 | + Notification::resolved(function(ChannelManager $service) { |
|
22 | + $service->extend('smsUp', function() { |
|
23 | 23 | return new SmsUpChannel(); |
24 | 24 | }); |
25 | 25 | }); |
@@ -37,8 +37,8 @@ discard block |
||
37 | 37 | */ |
38 | 38 | private function registerRoutes() |
39 | 39 | { |
40 | - Route::group($this->routeConfiguration(), function () { |
|
41 | - $this->loadRoutesFrom(__DIR__.'/Http/routes.php'); |
|
40 | + Route::group($this->routeConfiguration(), function() { |
|
41 | + $this->loadRoutesFrom(__DIR__ . '/Http/routes.php'); |
|
42 | 42 | }); |
43 | 43 | } |
44 | 44 |