1 | <?php |
||
14 | class ServiceProvider extends BaseServiceProvider |
||
15 | { |
||
16 | /** |
||
17 | * Create a new service provider instance. |
||
18 | * |
||
19 | * @param Application $app |
||
20 | */ |
||
21 | public function __construct(Application $app) |
||
25 | |||
26 | /** |
||
27 | * Bootstrap the application services. |
||
28 | * |
||
29 | * @return void |
||
30 | */ |
||
31 | public function boot() |
||
37 | |||
38 | /** |
||
39 | * Register the application services. |
||
40 | * |
||
41 | * @return void |
||
42 | */ |
||
43 | public function register() |
||
46 | |||
47 | /** |
||
48 | * @return void |
||
49 | */ |
||
50 | protected function publishMigrations() |
||
61 | |||
62 | /** |
||
63 | * @return void |
||
64 | */ |
||
65 | protected function registerRoutes() |
||
93 | |||
94 | /** |
||
95 | * @return void |
||
96 | */ |
||
97 | protected function registerRouteBindings() |
||
101 | } |
||
102 |