1 | <?php |
||
19 | class Factory |
||
20 | { |
||
21 | /** |
||
22 | * Create Api instance. |
||
23 | * |
||
24 | * @throws \InvalidArgumentException |
||
25 | * |
||
26 | * @return \Zibios\WrikePhpLibrary\Api |
||
27 | */ |
||
28 | 2 | public static function create() |
|
32 | |||
33 | /** |
||
34 | * Create Api instance with access token. |
||
35 | * |
||
36 | * @param string $token |
||
37 | * |
||
38 | * @throws \InvalidArgumentException |
||
39 | * |
||
40 | * @return \Zibios\WrikePhpLibrary\Api |
||
41 | */ |
||
42 | 2 | public static function createForPermanentToken($token) |
|
46 | } |
||
47 |