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