| 1 | <?php |
||
| 10 | class Customer extends Resource |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * The endpoint that will hit the API. |
||
| 14 | * |
||
| 15 | * @return string |
||
| 16 | */ |
||
| 17 | 18 | public function endpoint() |
|
| 21 | |||
| 22 | /** |
||
| 23 | * Make a POST request to customers/{id}/unarchive. |
||
| 24 | * |
||
| 25 | * @param int $id The resource's id. |
||
| 26 | * |
||
| 27 | * @return mixed |
||
| 28 | */ |
||
| 29 | 2 | public function unarchive($id) |
|
| 33 | } |
||
| 34 |