1 | <?php |
||
5 | class Tasklist extends TeamworkObject |
||
6 | { |
||
7 | |||
8 | protected $wrapper = 'todo-list'; |
||
9 | protected $endpoint = 'tasklists'; |
||
10 | |||
11 | /** |
||
12 | * GET /tasklists/{$id}.json |
||
13 | * @return mixed |
||
14 | */ |
||
15 | public function find() |
||
19 | |||
20 | /** |
||
21 | * PUT /todo_lists/{$id}.json |
||
22 | * @return mixed |
||
23 | */ |
||
24 | public function update($data) |
||
28 | |||
29 | /** |
||
30 | * DELETE /todo_lists/{$id}.json |
||
31 | * @return mixed |
||
32 | */ |
||
33 | public function delete() |
||
37 | |||
38 | /** |
||
39 | * GET /tasklists/templates.json |
||
40 | * @return [type] [description] |
||
|
|||
41 | */ |
||
42 | public function templates() |
||
46 | |||
47 | /** |
||
48 | * Time Totals |
||
49 | * GET /projects/{id}/time/total.json |
||
50 | * |
||
51 | * @return mixed |
||
52 | */ |
||
53 | public function timeTotal() |
||
57 | |||
58 | /** |
||
59 | * Tasks |
||
60 | * GET /tasklists/{id}/tasks.json |
||
61 | * |
||
62 | * @param null $args |
||
63 | * |
||
64 | * @return mixed |
||
65 | */ |
||
66 | public function tasks($args = null) |
||
72 | |||
73 | /** |
||
74 | * Create Task |
||
75 | * GET /tasklists/{id}/tasks.json |
||
76 | * |
||
77 | * @return mixed |
||
78 | */ |
||
79 | public function createTask($data) |
||
83 | } |
||
84 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.