Updates to vendors etc

This commit is contained in:
Chris Hunt
2025-07-11 15:57:48 +01:00
parent d972cbcd0a
commit 8fb6438254
8043 changed files with 248005 additions and 189479 deletions

View File

@@ -17,24 +17,23 @@ use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\ErrorHandler\DebugClassLoader;
use Symfony\Component\HttpKernel\Kernel;
trigger_deprecation('symfony/http-kernel', '7.1', 'The "%s" class is deprecated since Symfony 7.1 and will be removed in 8.0.', AddAnnotatedClassesToCachePass::class);
/**
* Sets the classes to compile in the cache for the container.
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @deprecated since Symfony 7.1, to be removed in 8.0
*/
class AddAnnotatedClassesToCachePass implements CompilerPassInterface
{
private Kernel $kernel;
public function __construct(Kernel $kernel)
{
$this->kernel = $kernel;
public function __construct(
private Kernel $kernel,
) {
}
/**
* @return void
*/
public function process(ContainerBuilder $container)
public function process(ContainerBuilder $container): void
{
$annotatedClasses = [];
foreach ($container->getExtensions() as $extension) {