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