1 | <?php |
||
22 | class AdapterResolver implements AdapterResolvable |
||
23 | { |
||
24 | |||
25 | /** |
||
26 | * @var array |
||
27 | */ |
||
28 | private $adapters; |
||
29 | |||
30 | |||
31 | /** |
||
32 | * @param array $adapters |
||
33 | */ |
||
34 | public function __construct(array $adapters) |
||
38 | |||
39 | /** |
||
40 | * @return \cloak\analyzer\AnalyzeAdapter |
||
41 | * @throws AdapterNotFoundException |
||
42 | */ |
||
43 | public function resolve() |
||
63 | |||
64 | } |
||
65 |