<?php
declare(strict_types=1);
namespace App\V4\Controller\Debug;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
/**
* @Route("/reset-opcache", methods={"GET"})
*/
class ResetOpCacheAction
{
public function __invoke(): Response
{
opcache_reset();
return new Response('OK');
}
}