1 | <?php |
||
11 | class OVHServiceProvider extends ServiceProvider |
||
12 | { |
||
13 | /** @var OVHConfiguration */ |
||
14 | private $config; |
||
15 | |||
16 | /** |
||
17 | * Bootstrap the application services. |
||
18 | */ |
||
19 | public function boot(): void |
||
25 | |||
26 | /** |
||
27 | * Configures available commands. |
||
28 | */ |
||
29 | protected function configureCommands(): void |
||
37 | |||
38 | /** |
||
39 | * Configures extended filesystem storage for interaction with OVH Object Storage. |
||
40 | */ |
||
41 | protected function configureStorage(): void |
||
55 | |||
56 | /** |
||
57 | * Creates an OpenStack client instance, needed for interaction with OVH OpenStack. |
||
58 | * |
||
59 | * @return OpenStack |
||
60 | */ |
||
61 | protected function makeOpenStackClient(): OpenStack |
||
80 | |||
81 | /** |
||
82 | * Creates a Filesystem instance for interaction with the Object Storage |
||
83 | * |
||
84 | * @param Container $container |
||
85 | * @return Filesystem |
||
86 | */ |
||
87 | protected function makeFileSystem(Container $container): Filesystem |
||
98 | } |
||
99 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..