1 | <?php |
||
19 | class AgregatorAdapter implements AdapterInterface |
||
20 | { |
||
21 | protected $adapters; |
||
22 | |||
23 | /** |
||
24 | * Build agregator adapter with a list of adpaters (order matters). |
||
25 | * |
||
26 | * @param array $adapters List of AdapterInterface objects |
||
27 | */ |
||
28 | public function __construct(array $adapters) |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function isThrowawayDomain($domain) |
||
54 | } |
||
55 |