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() |
||
62 | |||
63 | /** |
||
64 | * Get singleton drivers classes. |
||
65 | * |
||
66 | * @return array |
||
67 | */ |
||
68 | 6 | protected function getSingletonDrivers() |
|
77 | |||
78 | /** |
||
79 | * Get non-singleton drivers classes. |
||
80 | * |
||
81 | * @return array |
||
82 | */ |
||
83 | 6 | protected function getNonSingletonDrivers() |
|
95 | |||
96 | /** |
||
97 | * Get the binding key for the driver class. |
||
98 | * |
||
99 | * @param string $class |
||
100 | * @return string |
||
101 | */ |
||
102 | 6 | protected function getBindingKeyForDriver($class) |
|
108 | |||
109 | /** |
||
110 | * Register console commands. |
||
111 | * |
||
112 | * @return void |
||
113 | */ |
||
114 | 6 | protected function registerCommands() |
|
123 | } |
||
124 |