1 | <?php |
||
23 | class FortServiceProvider extends ServiceProvider |
||
24 | { |
||
25 | /** |
||
26 | * Bootstrap any application services. |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | public function boot(Router $router) |
||
46 | |||
47 | /** |
||
48 | * Register any application services. |
||
49 | * |
||
50 | * This service provider is a great spot to register your various container |
||
51 | * bindings with the application. As you can see, we are registering our |
||
52 | * "Registrar" implementation here. You can add your own bindings too! |
||
53 | * |
||
54 | * @return void |
||
55 | */ |
||
56 | public function register() |
||
60 | |||
61 | /** |
||
62 | * Load the module routes. |
||
63 | * |
||
64 | * @param \Illuminate\Routing\Router $router |
||
65 | * |
||
66 | * @return void |
||
67 | */ |
||
68 | public function loadRoutes(Router $router) |
||
87 | |||
88 | /** |
||
89 | * Publish resources. |
||
90 | * |
||
91 | * @return void |
||
92 | */ |
||
93 | protected function publishResources() |
||
105 | } |
||
106 |
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.