1 | <?php |
||
16 | class ReferralServiceProvider extends ServiceProvider |
||
17 | { |
||
18 | /** |
||
19 | * Indicates if loading of the provider is deferred. |
||
20 | * |
||
21 | * @var bool |
||
22 | */ |
||
23 | protected $defer = false; |
||
24 | |||
25 | /** |
||
26 | * Bootstrap the application events. |
||
27 | */ |
||
28 | public function boot() |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function register() |
||
40 | |||
41 | /** |
||
42 | * Setup the config. |
||
43 | */ |
||
44 | protected function setupConfig() |
||
54 | |||
55 | /** |
||
56 | * Setup the migrations. |
||
57 | */ |
||
58 | protected function setupMigrations() |
||
68 | } |
||
69 |