slash
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-01-11 14:08:56 +01:00
parent d18f9c34a3
commit dde29a26d8
3 changed files with 3 additions and 10 deletions

View File

@ -53,12 +53,4 @@ class PregController extends AbstractController
return JsonResponse::fromJsonString($json);
}
#[Route('/api/ppii', name: 'api_ppii', methods: ["GET"])]
public function ppii(): Response
{
ob_start();
phpinfo();
return new Response(ob_get_clean());
}
}