chore(symfony) #57 : bump symfony to version 6.4 and fix deprecations
Some checks are pending
Cadoles/hydra-sql/pipeline/pr-develop Build started...
Some checks are pending
Cadoles/hydra-sql/pipeline/pr-develop Build started...
This commit is contained in:
@ -8,6 +8,7 @@ use App\SQLLogin\SQLLoginRequest;
|
||||
use PDO;
|
||||
use Psr\Log\LoggerInterface;
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||
use Symfony\Component\Security\Core\User\UserInterface;
|
||||
|
||||
class SQLLoginService extends AbstractController
|
||||
{
|
||||
@ -21,6 +22,9 @@ class SQLLoginService extends AbstractController
|
||||
$this->loggerInterface = $loggerInterface;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string,string>
|
||||
*/
|
||||
public function fetchPasswordAndDatas(string $login): array
|
||||
{
|
||||
$dataRequest = $this->sqlLoginRequest->getDatasRequest();
|
||||
@ -30,6 +34,9 @@ class SQLLoginService extends AbstractController
|
||||
return $datas;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string,string>
|
||||
*/
|
||||
private function executeRequestWithLogin(string $request, string $login): array
|
||||
{
|
||||
$attempt = 0;
|
||||
|
Reference in New Issue
Block a user