@@ -29,7 +29,7 @@ |
||
29 | 29 | { |
30 | 30 | $builder->add('send_challenge', SubmitType::class, [ |
31 | 31 | 'label' => 'gateway.form.gateway_send_sms_challenge.button.send_challenge', |
32 | - 'attr' => [ 'class' => 'btn btn-primary' ], |
|
32 | + 'attr' => ['class' => 'btn btn-primary'], |
|
33 | 33 | ]); |
34 | 34 | } |
35 | 35 |
@@ -94,7 +94,7 @@ |
||
94 | 94 | return new Cookie( |
95 | 95 | $this->configuration->getName(), |
96 | 96 | $value, |
97 | - $this->configuration->isPersistent() ? $this->getTimestamp($this->configuration->getLifetime()): 0, |
|
97 | + $this->configuration->isPersistent() ? $this->getTimestamp($this->configuration->getLifetime()) : 0, |
|
98 | 98 | '/', |
99 | 99 | null, |
100 | 100 | true, |
@@ -271,7 +271,7 @@ |
||
271 | 271 | $form->addError( |
272 | 272 | new FormError( |
273 | 273 | $this->get('translator') |
274 | - ->trans('gateway.form.gateway_choose_second_factor.unknown_second_factor_type') |
|
274 | + ->trans('gateway.form.gateway_choose_second_factor.unknown_second_factor_type') |
|
275 | 275 | ) |
276 | 276 | ); |
277 | 277 | } |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | |
248 | 248 | // Filter the selected second factor from the array collection |
249 | 249 | $secondFactorFiltered = $secondFactors->filter( |
250 | - function ($secondFactor) use ($secondFactorType) { |
|
250 | + function($secondFactor) use ($secondFactorType) { |
|
251 | 251 | return $secondFactorType === $secondFactor->secondFactorType; |
252 | 252 | } |
253 | 253 | ); |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | $form = $this->createForm(VerifyYubikeyOtpType::class, $command)->handleRequest($request); |
393 | 393 | $cancelForm = $this->buildCancelAuthenticationForm($authenticationMode)->handleRequest($request); |
394 | 394 | |
395 | - if ($form->isSubmitted() && $form->isValid()) { |
|
395 | + if ($form->isSubmitted() && $form->isValid()) { |
|
396 | 396 | $result = $this->getStepupService()->verifyYubikeyOtp($command); |
397 | 397 | if ($result->didOtpVerificationFail()) { |
398 | 398 | $form->addError( |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | public function registerBundles(): iterable |
34 | 34 | { |
35 | - $contents = require $this->getProjectDir().'/config/bundles.php'; |
|
35 | + $contents = require $this->getProjectDir() . '/config/bundles.php'; |
|
36 | 36 | foreach ($contents as $class => $envs) { |
37 | 37 | if ($envs[$this->environment] ?? $envs['all'] ?? false) { |
38 | 38 | yield new $class(); |
@@ -47,23 +47,23 @@ discard block |
||
47 | 47 | |
48 | 48 | protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader): void |
49 | 49 | { |
50 | - $container->addResource(new FileResource($this->getProjectDir().'/config/bundles.php')); |
|
50 | + $container->addResource(new FileResource($this->getProjectDir() . '/config/bundles.php')); |
|
51 | 51 | $container->setParameter('container.dumper.inline_class_loader', \PHP_VERSION_ID < 70400 || $this->debug); |
52 | 52 | $container->setParameter('container.dumper.inline_factories', true); |
53 | - $confDir = $this->getProjectDir().'/config'; |
|
53 | + $confDir = $this->getProjectDir() . '/config'; |
|
54 | 54 | |
55 | - $loader->load($confDir.'/{packages}/*'.self::CONFIG_EXTS, 'glob'); |
|
56 | - $loader->load($confDir.'/{packages}/'.$this->environment.'/*'.self::CONFIG_EXTS, 'glob'); |
|
57 | - $loader->load($confDir.'/{services}'.self::CONFIG_EXTS, 'glob'); |
|
58 | - $loader->load($confDir.'/{services}_'.$this->environment.self::CONFIG_EXTS, 'glob'); |
|
55 | + $loader->load($confDir . '/{packages}/*' . self::CONFIG_EXTS, 'glob'); |
|
56 | + $loader->load($confDir . '/{packages}/' . $this->environment . '/*' . self::CONFIG_EXTS, 'glob'); |
|
57 | + $loader->load($confDir . '/{services}' . self::CONFIG_EXTS, 'glob'); |
|
58 | + $loader->load($confDir . '/{services}_' . $this->environment . self::CONFIG_EXTS, 'glob'); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | protected function configureRoutes(RouteCollectionBuilder $routes): void |
62 | 62 | { |
63 | - $confDir = $this->getProjectDir().'/config'; |
|
63 | + $confDir = $this->getProjectDir() . '/config'; |
|
64 | 64 | |
65 | - $routes->import($confDir.'/{routes}/'.$this->environment.'/*'.self::CONFIG_EXTS, '/', 'glob'); |
|
66 | - $routes->import($confDir.'/{routes}/*'.self::CONFIG_EXTS, '/', 'glob'); |
|
67 | - $routes->import($confDir.'/{routes}'.self::CONFIG_EXTS, '/', 'glob'); |
|
65 | + $routes->import($confDir . '/{routes}/' . $this->environment . '/*' . self::CONFIG_EXTS, '/', 'glob'); |
|
66 | + $routes->import($confDir . '/{routes}/*' . self::CONFIG_EXTS, '/', 'glob'); |
|
67 | + $routes->import($confDir . '/{routes}' . self::CONFIG_EXTS, '/', 'glob'); |
|
68 | 68 | } |
69 | 69 | } |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | $this->samlEntityService = $samlEntityService; |
83 | 83 | $this->stateHandler = $stateHandler; |
84 | 84 | $this->logger = $logger; |
85 | - $this->generationTime = is_null($now) ? new DateTime('now', new DateTimeZone('UTC')): $now; |
|
85 | + $this->generationTime = is_null($now) ? new DateTime('now', new DateTimeZone('UTC')) : $now; |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
@@ -341,7 +341,7 @@ discard block |
||
341 | 341 | |
342 | 342 | public function isVerifiedBySsoOn2faCookie(): bool |
343 | 343 | { |
344 | - $isVerified = $this->stateHandler->isVerifiedBySsoOn2faCookie() ? 'YES': 'NO'; |
|
344 | + $isVerified = $this->stateHandler->isVerifiedBySsoOn2faCookie() ? 'YES' : 'NO'; |
|
345 | 345 | $this->logger->notice(sprintf('Read isVerifiedBySsoOn2faCookie %s', $isVerified)); |
346 | 346 | return $this->stateHandler->isVerifiedBySsoOn2faCookie(); |
347 | 347 | } |