| 1 | <?php |
||
| 6 | class Organizations extends CrudEndpoint |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @var string |
||
| 10 | */ |
||
| 11 | protected $endpoint = 'organizations'; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @param string $id |
||
| 15 | * @return array |
||
| 16 | */ |
||
| 17 | public function getById($id) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $itemId |
||
| 26 | * @param array $attributes |
||
| 27 | * @return mixed |
||
| 28 | */ |
||
| 29 | public function update($itemId, array $attributes) |
||
| 35 | } |