1 | <?php |
||
13 | class Actions extends AbstractApi |
||
14 | { |
||
15 | protected $path = 'members/#id#/actions'; |
||
16 | |||
17 | /** |
||
18 | * Get actions related to a given member |
||
19 | * @link https://trello.com/docs/api/member/#get-1-members-idmember-or-username-actions |
||
20 | * |
||
21 | * @param string $id the card's id or short link |
||
22 | * @param array $params optional parameters |
||
23 | * |
||
24 | * @return array |
||
25 | */ |
||
26 | 1 | public function all($id, array $params = array()) |
|
30 | } |
||
31 |