1 | <?php |
||
11 | class OVHServiceProvider extends ServiceProvider |
||
12 | { |
||
13 | /** |
||
14 | * Bootstrap the application services. |
||
15 | * |
||
16 | * @return void |
||
17 | */ |
||
18 | public function boot() |
||
42 | |||
43 | /** |
||
44 | * Check that the config is properly setup. |
||
45 | * |
||
46 | * @param array $config |
||
47 | * @return void|BadMethodCallException |
||
48 | */ |
||
49 | protected function checkConfig($config) |
||
61 | |||
62 | /** |
||
63 | * Make the client needed for interaction with OVH OpenStack. |
||
64 | * |
||
65 | * @param array $config |
||
66 | * @return \OpenStack\OpenStack |
||
67 | */ |
||
68 | protected function makeClient($config) |
||
88 | |||
89 | /** |
||
90 | * Return the config variables required by the adapter. |
||
91 | * |
||
92 | * @param array &$config |
||
93 | * @return array |
||
94 | */ |
||
95 | protected function getVars(&$config) |
||
105 | |||
106 | /** |
||
107 | * Return the config variables required for large object. |
||
108 | * |
||
109 | * @param array &$config |
||
110 | * @return array |
||
111 | */ |
||
112 | protected function getLargeObjectConfig(&$config) |
||
130 | |||
131 | /** |
||
132 | * Expose the container to allow for modification to metadata |
||
133 | * |
||
134 | * @return \OpenStack\ObjectStore\v1\Models\Container; |
||
|
|||
135 | */ |
||
136 | public function getContainer() |
||
140 | } |
||
141 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.