| 1 | <?php |
||
| 5 | class Customer extends Resource |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * The endpoint that will hit the API. |
||
| 9 | * |
||
| 10 | * @return string |
||
| 11 | */ |
||
| 12 | 16 | public function endpoint() |
|
| 16 | |||
| 17 | /** |
||
| 18 | * Make a POST request to customers/{id}/unarchive. |
||
| 19 | * |
||
| 20 | * @param int $id The resource's id. |
||
| 21 | * |
||
| 22 | * @return mixed |
||
| 23 | */ |
||
| 24 | public function unarchive($id) |
||
| 28 | } |
||
| 29 |