1 | <?php |
||
19 | class FlysystemServiceProvider implements ServiceProviderInterface |
||
20 | { |
||
21 | /** |
||
22 | * Registers the service provider with a DI container. |
||
23 | * |
||
24 | * @param Container $container The DI container. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | 4 | public function register(Container $container): void |
|
34 | |||
35 | /** |
||
36 | * Get the `filesystem.migrations` service |
||
37 | * |
||
38 | * @param Container $container The DI container. |
||
39 | * |
||
40 | * @return Filesystem |
||
41 | */ |
||
42 | public function getMigrationsFilesystemService(Container $container): Filesystem |
||
46 | |||
47 | /** |
||
48 | * Get the `filesystem.snapshot` service |
||
49 | * |
||
50 | * @param Container $container The DI container. |
||
51 | * |
||
52 | * @return Filesystem |
||
53 | */ |
||
54 | public function getSnapshotFilesystemService(Container $container): Filesystem |
||
58 | |||
59 | /** |
||
60 | * Get the `filesystem.versions` service |
||
61 | * |
||
62 | * @param Container $container The DI container. |
||
63 | * |
||
64 | * @return Filesystem |
||
65 | */ |
||
66 | public function getVersionsFilesystemService(Container $container): Filesystem |
||
70 | } |
||
71 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.