1 | <?php |
||
11 | class FilesystemServiceProvider extends AbstractServiceProvider |
||
12 | { |
||
13 | protected $provides = [ |
||
14 | Filesystem::class, |
||
15 | ]; |
||
16 | |||
17 | private $adapter; |
||
18 | |||
19 | public function __construct(AdapterInterface $adapter) |
||
23 | |||
24 | /** |
||
25 | * Use the register method to register items with the container via the |
||
26 | * protected $this->container property or the `getContainer` method |
||
27 | * from the ContainerAwareTrait. |
||
28 | * |
||
29 | * @return void |
||
30 | */ |
||
31 | public function register(): void |
||
37 | } |
||
38 |