@@ -5,8 +5,8 @@ |
||
5 | 5 | class Users extends Endpoint |
6 | 6 | { |
7 | 7 | |
8 | - /** |
|
9 | - * @var string |
|
10 | - */ |
|
11 | - protected $endpoint = 'users'; |
|
8 | + /** |
|
9 | + * @var string |
|
10 | + */ |
|
11 | + protected $endpoint = 'users'; |
|
12 | 12 | } |
13 | 13 | \ No newline at end of file |
@@ -5,8 +5,8 @@ |
||
5 | 5 | class TaskLists extends CrudEndpoint |
6 | 6 | { |
7 | 7 | |
8 | - /** |
|
9 | - * @var string |
|
10 | - */ |
|
11 | - protected $endpoint = 'tasklists'; |
|
8 | + /** |
|
9 | + * @var string |
|
10 | + */ |
|
11 | + protected $endpoint = 'tasklists'; |
|
12 | 12 | } |
13 | 13 | \ No newline at end of file |
@@ -4,8 +4,8 @@ |
||
4 | 4 | |
5 | 5 | class Collections extends CrudEndpoint |
6 | 6 | { |
7 | - /** |
|
8 | - * @var string |
|
9 | - */ |
|
10 | - protected $endpoint = 'collections'; |
|
7 | + /** |
|
8 | + * @var string |
|
9 | + */ |
|
10 | + protected $endpoint = 'collections'; |
|
11 | 11 | } |
12 | 12 | \ No newline at end of file |
@@ -4,8 +4,8 @@ |
||
4 | 4 | |
5 | 5 | class Tags extends CrudEndpoint |
6 | 6 | { |
7 | - /** |
|
8 | - * @var string |
|
9 | - */ |
|
10 | - protected $endpoint = 'tags'; |
|
7 | + /** |
|
8 | + * @var string |
|
9 | + */ |
|
10 | + protected $endpoint = 'tags'; |
|
11 | 11 | } |
12 | 12 | \ No newline at end of file |
@@ -5,8 +5,8 @@ |
||
5 | 5 | class Comments extends CrudEndpoint |
6 | 6 | { |
7 | 7 | |
8 | - /** |
|
9 | - * @var string |
|
10 | - */ |
|
11 | - protected $endpoint = 'comments'; |
|
8 | + /** |
|
9 | + * @var string |
|
10 | + */ |
|
11 | + protected $endpoint = 'comments'; |
|
12 | 12 | } |
13 | 13 | \ No newline at end of file |
@@ -4,49 +4,49 @@ |
||
4 | 4 | |
5 | 5 | class CrudEndpoint extends Endpoint |
6 | 6 | { |
7 | - /** |
|
8 | - * @param array $attributes |
|
9 | - * @return array |
|
10 | - */ |
|
11 | - public function create(array $attributes) |
|
12 | - { |
|
13 | - return $this |
|
14 | - ->getHttp() |
|
15 | - ->post( |
|
16 | - $this->makeRequestUrl(), |
|
17 | - $attributes, |
|
18 | - $this->getHeaders() |
|
19 | - ); |
|
20 | - } |
|
7 | + /** |
|
8 | + * @param array $attributes |
|
9 | + * @return array |
|
10 | + */ |
|
11 | + public function create(array $attributes) |
|
12 | + { |
|
13 | + return $this |
|
14 | + ->getHttp() |
|
15 | + ->post( |
|
16 | + $this->makeRequestUrl(), |
|
17 | + $attributes, |
|
18 | + $this->getHeaders() |
|
19 | + ); |
|
20 | + } |
|
21 | 21 | |
22 | - /** |
|
23 | - * @param string $itemId |
|
24 | - * @param array $attributes |
|
25 | - * @return mixed |
|
26 | - */ |
|
27 | - public function update($itemId, array $attributes) |
|
28 | - { |
|
29 | - return $this |
|
30 | - ->getHttp() |
|
31 | - ->put( |
|
32 | - $this->makeRequestUrl($itemId), |
|
33 | - $attributes, |
|
34 | - $this->getHeaders() |
|
35 | - ); |
|
36 | - } |
|
22 | + /** |
|
23 | + * @param string $itemId |
|
24 | + * @param array $attributes |
|
25 | + * @return mixed |
|
26 | + */ |
|
27 | + public function update($itemId, array $attributes) |
|
28 | + { |
|
29 | + return $this |
|
30 | + ->getHttp() |
|
31 | + ->put( |
|
32 | + $this->makeRequestUrl($itemId), |
|
33 | + $attributes, |
|
34 | + $this->getHeaders() |
|
35 | + ); |
|
36 | + } |
|
37 | 37 | |
38 | - /** |
|
39 | - * @param string $itemId |
|
40 | - * @return mixed |
|
41 | - */ |
|
42 | - public function delete($itemId) |
|
43 | - { |
|
44 | - return $this |
|
45 | - ->getHttp() |
|
46 | - ->delete( |
|
47 | - $this->makeRequestUrl($itemId), |
|
48 | - [], |
|
49 | - $this->getHeaders() |
|
50 | - ); |
|
51 | - } |
|
38 | + /** |
|
39 | + * @param string $itemId |
|
40 | + * @return mixed |
|
41 | + */ |
|
42 | + public function delete($itemId) |
|
43 | + { |
|
44 | + return $this |
|
45 | + ->getHttp() |
|
46 | + ->delete( |
|
47 | + $this->makeRequestUrl($itemId), |
|
48 | + [], |
|
49 | + $this->getHeaders() |
|
50 | + ); |
|
51 | + } |
|
52 | 52 | } |
53 | 53 | \ No newline at end of file |
@@ -4,8 +4,8 @@ |
||
4 | 4 | |
5 | 5 | class Columns extends CrudEndpoint |
6 | 6 | { |
7 | - /** |
|
8 | - * @var string |
|
9 | - */ |
|
10 | - protected $endpoint = 'columns'; |
|
7 | + /** |
|
8 | + * @var string |
|
9 | + */ |
|
10 | + protected $endpoint = 'columns'; |
|
11 | 11 | } |
12 | 12 | \ No newline at end of file |
@@ -4,8 +4,8 @@ |
||
4 | 4 | |
5 | 5 | class Tasks extends CrudEndpoint |
6 | 6 | { |
7 | - /** |
|
8 | - * @var string |
|
9 | - */ |
|
10 | - protected $endpoint = 'tasks'; |
|
7 | + /** |
|
8 | + * @var string |
|
9 | + */ |
|
10 | + protected $endpoint = 'tasks'; |
|
11 | 11 | } |
12 | 12 | \ No newline at end of file |
@@ -4,26 +4,26 @@ |
||
4 | 4 | |
5 | 5 | class Widgets extends CrudEndpoint |
6 | 6 | { |
7 | - /** |
|
8 | - * @var string |
|
9 | - */ |
|
10 | - protected $endpoint = 'widgets'; |
|
7 | + /** |
|
8 | + * @var string |
|
9 | + */ |
|
10 | + protected $endpoint = 'widgets'; |
|
11 | 11 | |
12 | - /** |
|
13 | - * @param string $itemId |
|
14 | - * @param string|null $collectionId |
|
15 | - * @return mixed |
|
16 | - */ |
|
17 | - public function delete($itemId, $collectionId = null) |
|
18 | - { |
|
19 | - $attributes = $collectionId ? ['collectionId' => $collectionId] : []; |
|
12 | + /** |
|
13 | + * @param string $itemId |
|
14 | + * @param string|null $collectionId |
|
15 | + * @return mixed |
|
16 | + */ |
|
17 | + public function delete($itemId, $collectionId = null) |
|
18 | + { |
|
19 | + $attributes = $collectionId ? ['collectionId' => $collectionId] : []; |
|
20 | 20 | |
21 | - return $this |
|
22 | - ->getHttp() |
|
23 | - ->delete( |
|
24 | - $this->makeRequestUrl($itemId), |
|
25 | - $attributes, |
|
26 | - $this->getHeaders() |
|
27 | - ); |
|
28 | - } |
|
21 | + return $this |
|
22 | + ->getHttp() |
|
23 | + ->delete( |
|
24 | + $this->makeRequestUrl($itemId), |
|
25 | + $attributes, |
|
26 | + $this->getHeaders() |
|
27 | + ); |
|
28 | + } |
|
29 | 29 | } |
30 | 30 | \ No newline at end of file |