1 | <?php |
||
19 | class ProviderFactory implements ProviderFactoryInterface |
||
20 | { |
||
21 | const DRIVERS_NAMESPACE = 'Vinelab\\Cdn\\Providers\\'; |
||
22 | |||
23 | /** |
||
24 | * Create and return an instance of the corresponding |
||
25 | * Provider concrete according to the configuration. |
||
26 | * |
||
27 | * @param array $configurations |
||
28 | * |
||
29 | * @return mixed |
||
30 | * |
||
31 | * @throws \Vinelab\Cdn\UnsupportedDriverException |
||
32 | */ |
||
33 | public function create($configurations = array()) |
||
54 | } |
||
55 |