1 | <?php namespace jlourenco\comments; |
||
6 | class commentsServiceProvider extends ServiceProvider |
||
7 | { |
||
8 | |||
9 | /** |
||
10 | * Perform post-registration booting of services. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot() |
||
18 | |||
19 | /** |
||
20 | * Register any package services. |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | public function register() |
||
31 | |||
32 | /** |
||
33 | * Prepare the package resources. |
||
34 | * |
||
35 | * @return void |
||
36 | */ |
||
37 | protected function prepareResources() |
||
64 | |||
65 | /** |
||
66 | * Registers the blog posts. |
||
67 | * |
||
68 | * @return void |
||
69 | */ |
||
70 | protected function registerComment() |
||
85 | |||
86 | /** |
||
87 | * Registers log. |
||
88 | * |
||
89 | * @return void |
||
90 | */ |
||
91 | protected function registerComments() |
||
101 | |||
102 | /** |
||
103 | * Registers this module to the |
||
104 | * services providers and aliases. |
||
105 | * |
||
106 | * @return void |
||
107 | */ |
||
108 | protected function registerToAppConfig() |
||
116 | |||
117 | /** |
||
118 | * {@inheritDoc} |
||
119 | */ |
||
120 | public function provides() |
||
127 | |||
128 | } |