<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;class EntryPointController extends AbstractController{ /** * @Route("/entry/point", name="entry_point") */ public function index() { return $this->redirectToRoute('api_entrypoint'); }}