| 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 | * @return \Katapoka\Ahgora\Contracts\IAhgoraApi |
||
| 16 | * |
||
| 17 | * @throws InvalidArgumentException |
||
| 18 | */ |
||
| 19 | public function create(IHttpClient $httpCLient, $type) |
||
| 28 | } |