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 |
||
39 | |||
40 | /** |
||
41 | * Configures extended filesystem storage for interaction with OVH Object Storage. |
||
42 | */ |
||
43 | protected function configureStorage(): void |
||
57 | |||
58 | /** |
||
59 | * Creates an OpenStack client instance, needed for interaction with OVH OpenStack. |
||
60 | * |
||
61 | * @return OpenStack |
||
62 | */ |
||
63 | protected function makeOpenStackClient(): OpenStack |
||
82 | |||
83 | /** |
||
84 | * Creates a Filesystem instance for interaction with the Object Storage. |
||
85 | * |
||
86 | * @param Container $container |
||
87 | * @return Filesystem |
||
88 | */ |
||
89 | protected function makeFileSystem(Container $container): Filesystem |
||
100 | } |
||
101 |
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..