Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class ZoomConnectionFactory implements VendorConnectionFactory |
||
17 | { |
||
18 | /** |
||
19 | * @param string $clientId the client id which can be generated at the third party portal |
||
20 | * @param string $clientSecret this can be found similar to the clientId |
||
21 | * @param string $callbackUrl the url to callback after a third party auth attempt |
||
22 | * |
||
23 | * @return VendorConnection |
||
24 | */ |
||
25 | public function get($clientId, $clientSecret, $callbackUrl) |
||
37 |