1 | <?php |
||
20 | trait PutTrait |
||
21 | { |
||
22 | abstract protected function uri($uri); |
||
23 | |||
24 | abstract protected function request($method, $uri, $options); |
||
25 | |||
26 | abstract protected function buildPropertyMapArray(array $array, PropertyMap $propertyMap); |
||
27 | |||
28 | /** |
||
29 | * Create an API key |
||
30 | * |
||
31 | * @return null|string |
||
32 | */ |
||
33 | public function createApiKey() |
||
46 | } |
||
47 |