-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIssues.php
54 lines (42 loc) · 1.04 KB
/
Issues.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
<?php
/**
* Получение списка вопросов
* @link https://docs.github.com/en/rest/reference/issues
*/
namespace GitHubClientRest\Github;
use GitHubClientRest\Abstracts\Rest;
class Issues extends Rest
{
public function getList()
{
return $this->request('orgs/{owner}/issues');
}
public function open($id)
{
return $this->update($id, [
'state' => 'open'
]);
}
public function closed($id)
{
return $this->update($id, [
'state' => 'closed'
]);
}
public function get($id)
{
return $this->request("repos/{owner}/{repo}/issues/{$id}");
}
public function update($id, array $content)
{
return $this->request("repos/{owner}/{repo}/issues/{$id}", 'patch', $content);
}
public function create(string $title, string $body)
{
$data = [
'title' => $title,
'body' => $body,
];
return $this->request("/repos/{owner}/{repo}/issues", 'post', $data);
}
}