1 | <?php |
||
13 | class Actions extends AbstractApi |
||
14 | { |
||
15 | /** |
||
16 | * Base path of board actions api |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $path = 'boards/#id#/actions'; |
||
20 | |||
21 | /** |
||
22 | * Get actions related to a given board |
||
23 | * @link https://trello.com/docs/api/board/#get-1-boards-board-id-actions |
||
24 | * |
||
25 | * @param string $id the board's id |
||
26 | * @param array $params optional parameters |
||
27 | * |
||
28 | * @return array |
||
29 | */ |
||
30 | 1 | public function all($id, array $params = array()) |
|
34 | } |
||
35 |