1 | <?php |
||
7 | class TeamworkServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap the application events. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot() |
||
19 | |||
20 | /** |
||
21 | * Publish Teamwork configuration. |
||
22 | */ |
||
23 | protected function publishConfig() |
||
30 | |||
31 | /** |
||
32 | * Publish Teamwork migration. |
||
33 | */ |
||
34 | protected function publishMigration() |
||
44 | |||
45 | /** |
||
46 | * Register the service provider. |
||
47 | * |
||
48 | * @return void |
||
49 | */ |
||
50 | public function register() |
||
56 | |||
57 | /** |
||
58 | * Register the application bindings. |
||
59 | * |
||
60 | * @return void |
||
61 | */ |
||
62 | protected function registerTeamwork() |
||
66 | |||
67 | /** |
||
68 | * Merges user's and teamwork's configs. |
||
69 | * |
||
70 | * @return void |
||
71 | */ |
||
72 | protected function mergeConfig() |
||
78 | |||
79 | /** |
||
80 | * Register scaffolding command. |
||
81 | */ |
||
82 | protected function registerCommands() |
||
90 | } |
||
91 |