fix: adds test exception

This commit is contained in:
Brock H Caldwell
2025-11-08 12:40:09 -06:00
parent 83401f2a7a
commit 2315b995e0

View File

@@ -50,7 +50,7 @@ final class IndexController extends AbstractController
#[Route('/test')]
public function monitorTvShow(MonitorTvShowHandler $handler): Response
{
// $handler->handle(new MonitorTvShowCommand(82));
throw new \Exception('Test');
return $this->render('index/test.html.twig', []);
}
}