1 | <?php namespace Arcanedev\LaravelMessenger; |
||
12 | class LaravelMessengerServiceProvider extends ServiceProvider |
||
13 | { |
||
14 | /* ------------------------------------------------------------------------------------------------ |
||
15 | | Properties |
||
16 | | ------------------------------------------------------------------------------------------------ |
||
17 | */ |
||
18 | /** |
||
19 | * Package name. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $package = 'laravel-messenger'; |
||
24 | |||
25 | /* ------------------------------------------------------------------------------------------------ |
||
26 | | Getters & Setters |
||
27 | | ------------------------------------------------------------------------------------------------ |
||
28 | */ |
||
29 | /** |
||
30 | * Get the base path of the package. |
||
31 | * |
||
32 | * @return string |
||
33 | */ |
||
34 | public function getBasePath() |
||
38 | |||
39 | /* ------------------------------------------------------------------------------------------------ |
||
40 | | Main Functions |
||
41 | | ------------------------------------------------------------------------------------------------ |
||
42 | */ |
||
43 | /** |
||
44 | * Register the service provider. |
||
45 | */ |
||
46 | public function register() |
||
51 | |||
52 | /** |
||
53 | * Boot the service provider. |
||
54 | */ |
||
55 | public function boot() |
||
62 | |||
63 | /** |
||
64 | * Get the services provided by the provider. |
||
65 | * |
||
66 | * @return array |
||
67 | */ |
||
68 | public function provides() |
||
76 | |||
77 | /* ------------------------------------------------------------------------------------------------ |
||
78 | | Other Functions |
||
79 | | ------------------------------------------------------------------------------------------------ |
||
80 | */ |
||
81 | /** |
||
82 | * Bind the models. |
||
83 | */ |
||
84 | private function bindModels() |
||
97 | } |
||
98 |