Merge remote-tracking branch 'origin/support/3.2' into develop

This commit is contained in:
lenaick.moreira
2026-03-02 10:56:31 +01:00
123 changed files with 2898 additions and 2149 deletions

View File

@@ -12,6 +12,7 @@
namespace Symfony\Component\Config\Resource;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\Form\FormTypeExtensionInterface;
use Symfony\Component\Messenger\Handler\MessageSubscriberInterface;
use Symfony\Contracts\Service\ServiceSubscriberInterface;
@@ -212,5 +213,12 @@ class ReflectionClassResource implements SelfCheckingResourceInterface
yield ServiceSubscriberInterface::class;
yield print_r($class->name::getSubscribedServices(), true);
}
if (interface_exists(FormTypeExtensionInterface::class, false) && $class->isSubclassOf(FormTypeExtensionInterface::class)) {
yield FormTypeExtensionInterface::class;
foreach ($class->name::getExtendedTypes() as $key => $value) {
yield $key.print_r($value, true);
}
}
}
}