| 1 | <?php |
||
| 19 | class ProviderFactory implements ProviderFactoryInterface |
||
| 20 | { |
||
| 21 | const DRIVERS_NAMESPACE = 'Publiux\\laravelcdn\\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 | * @throws \Publiux\laravelcdn\UnsupportedDriverException |
||
| 30 | * |
||
| 31 | * @return mixed |
||
| 32 | */ |
||
| 33 | public function create($configurations = []) |
||
| 54 | } |
||
| 55 |