| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 12 | class BuildsController extends AbstractController |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @param BuildsService $builds |
||
| 16 | * @param string $slug |
||
| 17 | * @param string $branch |
||
| 18 | * |
||
| 19 | * @throws RuntimeException |
||
| 20 | * @throws RequestFailedException |
||
| 21 | * @throws InvalidArgumentException |
||
| 22 | * |
||
| 23 | * @return RedirectResponse |
||
| 24 | */ |
||
| 25 | public function latestAction(BuildsService $builds, string $slug, string $branch): RedirectResponse |
||
| 32 |