1 | <?php |
||
7 | class ApiFactory |
||
8 | { |
||
9 | /** |
||
10 | * Tries to instantiate an API class compatible. |
||
11 | * |
||
12 | * @param IHttpClient $httpCLient |
||
13 | * @param string $type |
||
14 | * |
||
15 | * @throws InvalidArgumentException |
||
16 | * |
||
17 | * @return \Katapoka\Ahgora\AbstractApi |
||
18 | */ |
||
19 | public static function create(IHttpClient $httpCLient, $type) |
||
28 | } |
||
29 |