tmdbId, $input->imdbId ); return $cache->get($cacheId, function (ItemInterface $item) use ($input) { $item->expiresAt(new \DateTimeImmutable("today 11:59 pm")); $results = $this->getMovieOptionsHandler->handle($input->toCommand()); return $this->render('torrentio/movies.html.twig', [ 'results' => $results, ]); }); } #[Route('/torrentio/tvshows/{tmdbId}/{imdbId}/{season?}/{episode?}', name: 'app_torrentio_tvshows')] public function tvShowOptions(GetTvShowOptionsInput $input, CacheInterface $cache): Response { $cacheId = sprintf( "page.torrentio.tvshows.%s.%s.%s.%s", $input->tmdbId, $input->imdbId, $input->season, $input->episode, ); // return $cache->get($cacheId, function (ItemInterface $item) use ($input) { // $item->expiresAt(new \DateTimeImmutable("today 11:59 pm")); $results = $this->getTvShowOptionsHandler->handle($input->toCommand()); return $this->render('torrentio/tvshows.html.twig', [ 'results' => $results, ]); // }); } }