1 | <?php |
||
11 | class FormatDiscoverLocalFileStorageFactory implements StorageFactoryInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var FormatDiscoverStrategyInterface |
||
15 | */ |
||
16 | private $formatDiscoverStrategyInterface; |
||
17 | |||
18 | /** |
||
19 | * @var LoggerInterface |
||
20 | */ |
||
21 | private $logger; |
||
22 | |||
23 | 15 | public function __construct(FormatDiscoverStrategyInterface $formatDiscoverStrategyInterface, LoggerInterface $logger = null) |
|
28 | |||
29 | /** |
||
30 | * (non-PHPdoc). |
||
31 | * |
||
32 | * @see \Mathielen\ImportEngine\Storage\Factory\StorageFactoryInterface::factor() |
||
33 | */ |
||
34 | 2 | public function factor(StorageSelection $selection) |
|
61 | } |
||
62 |