for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace App\Controller\Security;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
/**
* @Route("/api/users/login", methods={"POST"}, name="api_users_login")
*/
final class LoginController extends AbstractController
{
public function __invoke(): void
throw new \RuntimeException('Should not be reached.');
}