1 | <?php |
||
20 | class Laravel extends Standard implements Iface |
||
21 | { |
||
22 | private $objects = array(); |
||
23 | private $fsm; |
||
24 | |||
25 | |||
26 | /** |
||
27 | * Initializes the object |
||
28 | * |
||
29 | * @param \Illuminate\Filesystem\FilesystemManager $fsm Laravel file system manager object |
||
30 | * @param \Aimeos\MW\Config\Iface $config Configuration object |
||
31 | */ |
||
32 | public function __construct( \Illuminate\Filesystem\FilesystemManager $fsm, \Aimeos\MW\Config\Iface $config ) |
||
38 | |||
39 | |||
40 | /** |
||
41 | * Returns the file system for the given name |
||
42 | * |
||
43 | * @param string $name Key for the file system |
||
44 | * @return \Aimeos\MW\Filesystem\Iface File system object |
||
45 | * @throws \Aimeos\MW\Filesystem\Exception If an no configuration for that name is found |
||
46 | */ |
||
47 | public function get( $name ) |
||
62 | } |
||
63 |