1 | <?php |
||
17 | abstract class AbstractFileStrategy implements FileStrategyInterface |
||
18 | { |
||
19 | protected $container; |
||
20 | |||
21 | public function __construct(AdapterContainer $container) |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public function getAdapters() |
||
42 | |||
43 | /** |
||
44 | * Returns an array of service names that defines adapters. |
||
45 | * |
||
46 | * @return string[] |
||
47 | */ |
||
48 | abstract protected function getServiceNames(); |
||
49 | } |
||
50 |