Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 460477f

Browse files
committed
Applied fabbot patches
1 parent 6b49592 commit 460477f

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

CHANGELOG-4.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -911,7 +911,7 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c
911911
* bug #26009 [SecurityBundle] Allow remember-me factory creation when multiple user providers are configured. (iisisrael)
912912
* bug #26010 [CssSelector] For AND operator, the left operand should have parentheses, not only right operand (Arnaud CHASSEUX)
913913
* bug #26000 Fixed issue #25985 (KevinFrantz)
914-
* bug #25996 Don't show wanna-be-private services as public in debug:container (chalasr)
914+
* bug #25996 Don't show want to-be-private services as public in debug:container (chalasr)
915915
* bug #25914 [HttpKernel] collect extension information as late as possible (xabbuh)
916916
* bug #25981 [DI] Fix tracking of source class changes for lazy-proxies (nicolas-grekas)
917917
* bug #25971 [Debug] Fix bad registration of exception handler, leading to mem leak (nicolas-grekas)

src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/AppKernel.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional\app;
1313

1414
use Psr\Log\NullLogger;
15-
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
1615
use Symfony\Component\Config\Definition\ConfigurationInterface;
1716
use Symfony\Component\Config\Loader\LoaderInterface;
1817
use Symfony\Component\DependencyInjection\ContainerBuilder;

src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/AnonymousFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function create(ContainerBuilder $container, $id, $config, $userProvider,
4747

4848
public function createAuthenticator(ContainerBuilder $container, string $firewallName, array $config, string $userProviderId): string
4949
{
50-
throw new InvalidConfigurationException(sprintf('The authenticator manager no longer has "anonymous" security. Please remove this option under the "%s" firewall'.($config['lazy'] ? ' and add "lazy: true"' : '').'.', $firewallName));
50+
throw new InvalidConfigurationException(sprintf('The authenticator manager no longer has "anonymous" security. Please remove this option under the "%s" firewall.'.($config['lazy'] ? ' and add "lazy: true"' : '').'.', $firewallName));
5151
}
5252

5353
public function getPosition()

0 commit comments

Comments
 (0)