| 1 | <?php |
||
| 7 | class Comments extends TeamworkObject |
||
| 8 | { |
||
| 9 | use RestfulTrait; |
||
| 10 | |||
| 11 | protected $wrapper = 'comment'; |
||
| 12 | protected $endpoint = 'comments'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Create Message |
||
| 16 | * POST /$resource/$id/comments.json |
||
| 17 | * |
||
| 18 | * @retun mixed |
||
| 19 | */ |
||
| 20 | public function create($resource, $resouce_id, $data) |
||
| 24 | } |