1 | <?php |
||
9 | class LaravelMessageServiceServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * Perform post-registration booting of services. |
||
13 | * |
||
14 | * @return void |
||
15 | */ |
||
16 | public function boot() |
||
32 | |||
33 | /** |
||
34 | * Register any package services. |
||
35 | * |
||
36 | * @return void |
||
37 | */ |
||
38 | public function register() |
||
41 | |||
42 | /** |
||
43 | * Register Package's migration files. |
||
44 | * |
||
45 | * @return void |
||
46 | */ |
||
47 | protected function registerMigrations() |
||
57 | |||
58 | /** |
||
59 | * Register a database migration path. |
||
60 | * |
||
61 | * @param array|string $paths |
||
62 | * @return void |
||
63 | */ |
||
64 | protected function loadMigrationsFrom($paths) |
||
72 | |||
73 | public function registerCommands() |
||
84 | |||
85 | /** |
||
86 | * |
||
87 | */ |
||
88 | public function registerJobs() |
||
94 | } |
This check looks for access to properties that are not accessible from the current context.
If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.