1 | <?php |
||
8 | class AutoIncrementServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Bootstrap the application services. |
||
12 | * |
||
13 | * @return void |
||
14 | */ |
||
15 | public function boot() |
||
20 | |||
21 | /** |
||
22 | * Register the listener. |
||
23 | * |
||
24 | * @return void |
||
25 | */ |
||
26 | protected function registerListener() |
||
35 | |||
36 | protected function registerCommand() |
||
44 | |||
45 | /** |
||
46 | * Register any application services. |
||
47 | * |
||
48 | * @return void |
||
49 | */ |
||
50 | public function register() |
||
59 | |||
60 | /** |
||
61 | * Setup the configuration for AutoIncrement. |
||
62 | * |
||
63 | * @return void |
||
64 | */ |
||
65 | protected function configure() |
||
72 | |||
73 | /** |
||
74 | * Setup the resource publishing groups for AutoIncrement. |
||
75 | * |
||
76 | * @return void |
||
77 | */ |
||
78 | protected function offerPublishing() |
||
86 | } |
||
87 |