Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
47 | public function create(string $label, string $public_key): OperationResponse |
||
48 | { |
||
49 | |||
50 | $options = [ |
||
51 | 'json' => [ |
||
52 | 'label' => $label, |
||
53 | 'public_key' => $public_key, |
||
54 | ], |
||
55 | ]; |
||
56 | |||
57 | return new OperationResponse( |
||
58 | $this->client->request('post', "/account/ssh-keys", $options) |
||
59 | ); |
||
72 |