1 | <?php namespace Distilleries\Messenger; |
||
9 | class MessengerServiceProvider extends ServiceProvider { |
||
10 | |||
11 | |||
12 | protected $package = 'messenger'; |
||
13 | protected $namespace = 'Distilleries\Messenger\Http\Controllers'; |
||
14 | |||
15 | |||
16 | 120 | public function boot() |
|
28 | |||
29 | /** |
||
30 | * Register the service provider. |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | 120 | public function register() |
|
49 | |||
50 | /** |
||
51 | * Get the services provided by the provider. |
||
52 | * |
||
53 | * @return string[] |
||
54 | */ |
||
55 | 4 | public function provides() |
|
59 | |||
60 | |||
61 | 120 | public function alias() { |
|
72 | |||
73 | /** |
||
74 | * Define the routes for the application. |
||
75 | * |
||
76 | * @param \Illuminate\Routing\Router $router |
||
77 | * @return void |
||
78 | */ |
||
79 | public function map(Router $router) |
||
86 | } |