1 | <?php |
||
12 | class ProjectsServiceProvider extends ServiceProvider |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * All of the event / listener mappings. |
||
17 | * |
||
18 | * @var array |
||
19 | */ |
||
20 | protected $events = []; |
||
21 | |||
22 | /** |
||
23 | * Bootstrap the application services. |
||
24 | */ |
||
25 | public function boot() |
||
33 | |||
34 | protected function bootFactories($path) |
||
38 | |||
39 | /** |
||
40 | * Register bindings in the container. |
||
41 | * |
||
42 | * @return void |
||
43 | */ |
||
44 | public function register() |
||
52 | |||
53 | /** |
||
54 | * Register the events and listeners. |
||
55 | * |
||
56 | * @return void |
||
57 | * @throws BindingResolutionException |
||
58 | */ |
||
59 | private function bootEvents() |
||
69 | |||
70 | /** |
||
71 | * Register the package's migrations. |
||
72 | * |
||
73 | * @return void |
||
74 | */ |
||
75 | private function handleMigrations() |
||
85 | |||
86 | /** |
||
87 | * @return void |
||
88 | */ |
||
89 | private function registerCommands() |
||
96 | } |
||
97 |