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