]>
Commit | Line | Data |
---|---|---|
7019c7cf JB |
1 | <?php |
2 | ||
3 | namespace Wallabag\ImportBundle\Import; | |
4 | ||
5 | class ImportChain | |
6 | { | |
7 | private $imports; | |
8 | ||
9 | public function __construct() | |
10 | { | |
11 | $this->imports = []; | |
12 | } | |
13 | ||
14 | /** | |
15 | * Add an import to the chain. | |
16 | * | |
17 | * @param ImportInterface $import | |
18 | * @param string $alias | |
19 | */ | |
20 | public function addImport(ImportInterface $import, $alias) | |
21 | { | |
22 | $this->imports[$alias] = $import; | |
23 | } | |
24 | ||
25 | /** | |
26 | * Get all imports. | |
27 | * | |
28 | * @return array<ImportInterface> | |
29 | */ | |
30 | public function getAll() | |
31 | { | |
32 | return $this->imports; | |
33 | } | |
34 | } |