| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | trait DeleteMethod |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Generic 'deleteMethod' method for REST resources. |
||
| 25 | * |
||
| 26 | * @param array<int, string>|null $allowedHttpMethods |
||
| 27 | * |
||
| 28 | * @throws Throwable |
||
| 29 | */ |
||
| 30 | 31 | public function deleteMethod(Request $request, string $id, ?array $allowedHttpMethods = null): Response |
|
| 44 |