-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGithubUserKeys.php
61 lines (52 loc) · 1000 Bytes
/
GithubUserKeys.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
require_once('Github.php');
class GithubUserKeys extends Github {
/**
* List public keys for the current user
*/
public function listAll() {
return $this->request('/user/keys');
}
/**
* Get a single public key
*
* @param int $id Key ID
*/
public function get($id) {
return $this->request('/user/keys/'.$id);
}
/**
* Create a public key
*
* @param string $title
* @param string $key
*/
public function create($title, $key) {
return $this->request('/user/keys', 'POST', array(
'title' => $title,
'key' => $key,
));
}
/**
* Update a public key
*
* @param int $id Key ID
* @param string $title
* @param string $key
*/
public function edit($id, $title, $key) {
return $this->request('/user/keys/'.$id, 'PATCH', array(
'title' => $title,
'key' => $key,
));
}
/**
* Delete a public key
*
* @param int $id Key ID
*/
public function delete($id) {
return $this->request('/user/keys/'.$id, 'DELETE');
}
}
?>