1 | <?php |
||
8 | class AdapterFactory |
||
9 | { |
||
10 | /** |
||
11 | * |
||
12 | * @param string $vendor |
||
13 | * @param Owner $owner |
||
14 | * @param string $configurationPath |
||
15 | * @return Adapter |
||
16 | * @throws \Exception |
||
17 | */ |
||
18 | public static function build($vendor, Owner $owner, $configurationPath, LoggerInterface $logger = null) |
||
24 | |||
25 | /** |
||
26 | * |
||
27 | * @param string $vendor |
||
28 | * @return string Adapter class name |
||
29 | * @throws \Exception |
||
30 | */ |
||
31 | public static function getClassName($vendor) |
||
40 | } |
||
41 |