1 | <?php |
||
5 | class Activity extends TeamworkObject |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * Latest Activity |
||
10 | * GET /latestActivity.json |
||
11 | * |
||
12 | * @link http://developer.teamwork.com/activity#options |
||
13 | * |
||
14 | * @params $args [ maxItems | onlyStarred ] |
||
15 | * |
||
16 | * @return mixed |
||
17 | */ |
||
18 | public function latest($args = null) |
||
24 | |||
25 | /** |
||
26 | * Delete Activity |
||
27 | * DELETE /activity/{$id}.json |
||
28 | * |
||
29 | * @link http://developer.teamwork.com/activity#delete_an_activit |
||
30 | * |
||
31 | * @return mixed |
||
32 | */ |
||
33 | public function delete() |
||
37 | |||
38 | } |