forked from KnpLabs/php-github-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCards.php
More file actions
60 lines (48 loc) · 1.51 KB
/
Copy pathCards.php
File metadata and controls
60 lines (48 loc) · 1.51 KB
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
<?php
namespace Github\Api\Project;
use Github\Api\AbstractApi;
use Github\Api\AcceptHeaderTrait;
use Github\Exception\MissingArgumentException;
class Cards extends AbstractApi
{
use AcceptHeaderTrait;
/**
* Configure the accept header for Early Access to the projects api.
*
* @see https://developer.github.com/v3/repos/projects/#projects
*
* @return $this
*/
public function configure()
{
$this->acceptHeaderValue = 'application/vnd.github.inertia-preview+json';
return $this;
}
public function all($columnId, array $params = [])
{
return $this->get('/projects/columns/'.rawurlencode($columnId).'/cards', array_merge(['page' => 1], $params));
}
public function show($id)
{
return $this->get('/projects/columns/cards/'.rawurlencode($id));
}
public function create($columnId, array $params)
{
return $this->post('/projects/columns/'.rawurlencode($columnId).'/cards', $params);
}
public function update($id, array $params)
{
return $this->patch('/projects/columns/cards/'.rawurlencode($id), $params);
}
public function deleteCard($id)
{
return $this->delete('/projects/columns/cards/'.rawurlencode($id));
}
public function move($id, array $params)
{
if (!isset($params['position'])) {
throw new MissingArgumentException(['position']);
}
return $this->post('/projects/columns/cards/'.rawurlencode($id).'/moves', $params);
}
}