Update dependency matthiasnoback/symfony-dependency-injection-test to v5 #1880
Annotations
10 warnings
src/Action/CheckEmailAction.php#L54
Escaped Mutant for Mutator "UnwrapTrim":
--- Original
+++ New
@@ @@
public function __invoke(Request $request) : Response
{
$username = $request->query->get('username', '');
- if ('' === trim($username)) {
+ if ('' === $username) {
// the user does not come from the sendEmail action
return new RedirectResponse($this->urlGenerator->generate('nucleos_user_admin_resetting_request'));
}
|
src/Action/CheckEmailAction.php#L63
Escaped Mutant for Mutator "DecrementInteger":
--- Original
+++ New
@@ @@
// the user does not come from the sendEmail action
return new RedirectResponse($this->urlGenerator->generate('nucleos_user_admin_resetting_request'));
}
- return new Response($this->twig->render('@NucleosUserAdmin/Admin/Security/Resetting/checkEmail.html.twig', ['base_template' => $this->templateRegistry->getTemplate('layout'), 'admin_pool' => $this->adminPool, 'tokenLifetime' => ceil($this->resetTtl / 3600)]));
+ return new Response($this->twig->render('@NucleosUserAdmin/Admin/Security/Resetting/checkEmail.html.twig', ['base_template' => $this->templateRegistry->getTemplate('layout'), 'admin_pool' => $this->adminPool, 'tokenLifetime' => ceil($this->resetTtl / 3599)]));
}
}
|
src/Action/CheckEmailAction.php#L63
Escaped Mutant for Mutator "IncrementInteger":
--- Original
+++ New
@@ @@
// the user does not come from the sendEmail action
return new RedirectResponse($this->urlGenerator->generate('nucleos_user_admin_resetting_request'));
}
- return new Response($this->twig->render('@NucleosUserAdmin/Admin/Security/Resetting/checkEmail.html.twig', ['base_template' => $this->templateRegistry->getTemplate('layout'), 'admin_pool' => $this->adminPool, 'tokenLifetime' => ceil($this->resetTtl / 3600)]));
+ return new Response($this->twig->render('@NucleosUserAdmin/Admin/Security/Resetting/checkEmail.html.twig', ['base_template' => $this->templateRegistry->getTemplate('layout'), 'admin_pool' => $this->adminPool, 'tokenLifetime' => ceil($this->resetTtl / 3601)]));
}
}
|
src/Action/LoginAction.php#L108
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
return new RedirectResponse($this->router->generate('sonata_admin_dashboard'));
}
$event = new GetResponseLoginEvent($request);
- $this->eventDispatcher->dispatch($event, NucleosUserEvents::SECURITY_LOGIN_INITIALIZE);
+
if (null !== $event->getResponse()) {
return $event->getResponse();
}
|
src/Action/LoginAction.php#L126
Escaped Mutant for Mutator "ArrayItemRemoval":
--- Original
+++ New
@@ @@
$url = '' !== $refererUri && $refererUri !== $request->getUri() ? $refererUri : $this->router->generate('sonata_admin_dashboard');
return new RedirectResponse($url);
}
- $form = $this->formFactory->create(LoginFormType::class, null, ['action' => $this->router->generate('nucleos_user_admin_security_check'), 'method' => 'POST'])->add('save', SubmitType::class, ['label' => 'security.login.submit']);
+ $form = $this->formFactory->create(LoginFormType::class, null, ['action' => $this->router->generate('nucleos_user_admin_security_check'), 'method' => 'POST'])->add('save', SubmitType::class, []);
// last username entered by the user
return new Response($this->twig->render('@NucleosUserAdmin/Admin/Security/login.html.twig', ['form' => $form->createView(), 'admin_pool' => $this->adminPool, 'base_template' => $this->templateRegistry->getTemplate('layout'), 'csrf_token' => $this->getCsrfToken(), 'error' => $this->getLastAuthenticationError($request), 'last_username' => $this->getLastUsername($session), 'reset_route' => $this->router->generate('nucleos_user_admin_resetting_request')]));
}
|
src/Action/LoginAction.php#L164
Escaped Mutant for Mutator "LogicalAnd":
--- Original
+++ New
@@ @@
// get the error if any (works with forward and redirect -- see below)
if ($request->attributes->has($authErrorKey)) {
$error = $request->attributes->get($authErrorKey);
- } elseif (null !== $session && $session->has($authErrorKey)) {
+ } elseif (null !== $session || $session->has($authErrorKey)) {
$error = $session->get($authErrorKey);
$session->remove($authErrorKey);
} else {
|
src/Action/LoginAction.php#L166
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$error = $request->attributes->get($authErrorKey);
} elseif (null !== $session && $session->has($authErrorKey)) {
$error = $session->get($authErrorKey);
- $session->remove($authErrorKey);
+
} else {
$error = null;
}
|
src/Action/LoginAction.php#L171
Escaped Mutant for Mutator "InstanceOf_":
--- Original
+++ New
@@ @@
} else {
$error = null;
}
- if (!$error instanceof AuthenticationException) {
+ if (!true) {
$error = null;
// The value does not come from the security component.
}
|
src/Action/LoginAction.php#L197
Escaped Mutant for Mutator "InstanceOf_":
--- Original
+++ New
@@ @@
return false;
}
$user = $token->getUser();
- return $user instanceof UserInterface;
+ return true;
}
private function getCsrfToken() : ?string
{
|
src/Action/LoginAction.php#L207
Escaped Mutant for Mutator "InstanceOf_":
--- Original
+++ New
@@ @@
}
private function addFlash(?SessionInterface $session, string $type, string $message) : void
{
- if (!$session instanceof Session) {
+ if (!true) {
return;
}
$session->getFlashBag()->add($type, $message);
}
}
|
The logs for this run have expired and are no longer available.
Loading