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