1 | <?php |
||
8 | class HashidServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Register the service provider. |
||
12 | * |
||
13 | * @return void |
||
14 | */ |
||
15 | 6 | public function register() |
|
22 | |||
23 | /** |
||
24 | * Setup package assets. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | 6 | protected function setupAssets() |
|
40 | |||
41 | /** |
||
42 | * Register service bindings. |
||
43 | * |
||
44 | * @return void |
||
45 | */ |
||
46 | protected function registerServices() |
||
77 | |||
78 | /** |
||
79 | * Get the binding key for the driver class. |
||
80 | * |
||
81 | * @param string $class |
||
82 | * @return string |
||
83 | */ |
||
84 | 6 | protected function getBindingKeyForDriver($class) |
|
90 | |||
91 | /** |
||
92 | * Register console commands. |
||
93 | * |
||
94 | * @return void |
||
95 | */ |
||
96 | 6 | protected function registerCommands() |
|
105 | } |
||
106 |