1 | <?php |
||
15 | class FriendsServiceProvider extends ServiceProvider |
||
16 | { |
||
17 | /** |
||
18 | * Indicates if loading of the provider is deferred. |
||
19 | * |
||
20 | * @var bool |
||
21 | */ |
||
22 | protected $defer = false; |
||
23 | |||
24 | /** |
||
25 | * Bootstrap the application events. |
||
26 | * |
||
27 | * @return void |
||
28 | */ |
||
29 | 26 | public function boot() |
|
34 | |||
35 | /** |
||
36 | * Publish Friends configuration. |
||
37 | */ |
||
38 | 26 | protected function publishConfig() |
|
47 | |||
48 | /** |
||
49 | * Publish Friends migration. |
||
50 | */ |
||
51 | 26 | protected function publishMigration() |
|
66 | |||
67 | /** |
||
68 | * Register the service provider. |
||
69 | * |
||
70 | * @return void |
||
71 | */ |
||
72 | 26 | public function register() |
|
79 | |||
80 | /** |
||
81 | * Merges user's and friends's configs. |
||
82 | * |
||
83 | * @return void |
||
84 | */ |
||
85 | 26 | protected function mergeConfig() |
|
91 | } |
||
92 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.