@@ -32,17 +32,6 @@ index c61c28a147..640539c1d0 100644
3232+ public function getQueryCount(): int
3333 {
3434 return array_sum(array_map('count', $this->data['queries']));
35- diff --git a/src/Symfony/Bridge/Doctrine/DataFixtures/ContainerAwareLoader.php b/src/Symfony/Bridge/Doctrine/DataFixtures/ContainerAwareLoader.php
36- index 448da935d9..06c97eb70c 100644
37- --- a/src/Symfony/Bridge/Doctrine/DataFixtures/ContainerAwareLoader.php
38- +++ b/src/Symfony/Bridge/Doctrine/DataFixtures/ContainerAwareLoader.php
39- @@ -40,5 +40,5 @@ class ContainerAwareLoader extends Loader
40- * @return void
41- */
42- - public function addFixture(FixtureInterface $fixture)
43- + public function addFixture(FixtureInterface $fixture): void
44- {
45- if ($fixture instanceof ContainerAwareInterface) {
4635diff --git a/src/Symfony/Bridge/Doctrine/DependencyInjection/AbstractDoctrineExtension.php b/src/Symfony/Bridge/Doctrine/DependencyInjection/AbstractDoctrineExtension.php
4736index 1ce0ffd40c..585265fb38 100644
4837--- a/src/Symfony/Bridge/Doctrine/DependencyInjection/AbstractDoctrineExtension.php
@@ -484,17 +473,17 @@ index eadeafba55..4f1ca3bfef 100644
484473 {
485474 $configuration = new Configuration();
486475diff --git a/src/Symfony/Bundle/FrameworkBundle/Console/Application.php b/src/Symfony/Bundle/FrameworkBundle/Console/Application.php
487- index02709ba649..5a3e972793 100644
476+ index0451b31fe1..14806da8ee 100644
488477--- a/src/Symfony/Bundle/FrameworkBundle/Console/Application.php
489478+++ b/src/Symfony/Bundle/FrameworkBundle/Console/Application.php
490- @@ -56 ,5 +56 ,5 @@ class Application extends BaseApplication
479+ @@ -55 ,5 +55 ,5 @@ class Application extends BaseApplication
491480 * @return void
492481 */
493482- public function reset()
494483+ public function reset(): void
495484 {
496485 if ($this->kernel->getContainer()->has('services_resetter')) {
497- @@ -145 ,5 +145 ,5 @@ class Application extends BaseApplication
486+ @@ -137 ,5 +137 ,5 @@ class Application extends BaseApplication
498487 * @return void
499488 */
500489- protected function registerCommands()
@@ -4108,27 +4097,6 @@ index 3ea2228b94..f1d7078383 100644
41084097+ protected function load(string $file): mixed
41094098 {
41104099 return require $file;
4111- diff --git a/src/Symfony/Component/DependencyInjection/ContainerAwareInterface.php b/src/Symfony/Component/DependencyInjection/ContainerAwareInterface.php
4112- index 9b3709c965..97b54712c9 100644
4113- --- a/src/Symfony/Component/DependencyInjection/ContainerAwareInterface.php
4114- +++ b/src/Symfony/Component/DependencyInjection/ContainerAwareInterface.php
4115- @@ -26,4 +26,4 @@ interface ContainerAwareInterface
4116- * @return void
4117- */
4118- - public function setContainer(?ContainerInterface $container);
4119- + public function setContainer(?ContainerInterface $container): void;
4120- }
4121- diff --git a/src/Symfony/Component/DependencyInjection/ContainerAwareTrait.php b/src/Symfony/Component/DependencyInjection/ContainerAwareTrait.php
4122- index 4174fec8d0..f6a7b2da12 100644
4123- --- a/src/Symfony/Component/DependencyInjection/ContainerAwareTrait.php
4124- +++ b/src/Symfony/Component/DependencyInjection/ContainerAwareTrait.php
4125- @@ -31,5 +31,5 @@ trait ContainerAwareTrait
4126- * @return void
4127- */
4128- - public function setContainer(ContainerInterface $container = null)
4129- + public function setContainer(ContainerInterface $container = null): void
4130- {
4131- if (1 > \func_num_args()) {
41324100diff --git a/src/Symfony/Component/DependencyInjection/ContainerBuilder.php b/src/Symfony/Component/DependencyInjection/ContainerBuilder.php
41334101index a7a9c145aa..bd16e937ca 100644
41344102--- a/src/Symfony/Component/DependencyInjection/ContainerBuilder.php
@@ -4560,52 +4528,52 @@ index 1ede090384..7b6b63c599 100644
45604528 {
45614529 throw new LogicException('Impossible to call remove() on a frozen ParameterBag.');
45624530diff --git a/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBag.php b/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBag.php
4563- index6ba8a4cf7c..5e5e22bc09 100644
4531+ index8cd6111fe2..61a1e894a7 100644
45644532--- a/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBag.php
45654533+++ b/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBag.php
4566- @@ -35 ,5 +35 ,5 @@ class ParameterBag implements ParameterBagInterface
4534+ @@ -36 ,5 +36 ,5 @@ class ParameterBag implements ParameterBagInterface
45674535 * @return void
45684536 */
45694537- public function clear()
45704538+ public function clear(): void
45714539 {
45724540 $this->parameters = [];
4573- @@ -43 ,5 +43 ,5 @@ class ParameterBag implements ParameterBagInterface
4541+ @@ -44 ,5 +44 ,5 @@ class ParameterBag implements ParameterBagInterface
45744542 * @return void
45754543 */
45764544- public function add(array $parameters)
45774545+ public function add(array $parameters): void
45784546 {
45794547 foreach ($parameters as $key => $value) {
4580- @@ -104 ,5 +104 ,5 @@ class ParameterBag implements ParameterBagInterface
4548+ @@ -105 ,5 +105 ,5 @@ class ParameterBag implements ParameterBagInterface
45814549 * @return void
45824550 */
45834551- public function set(string $name, array|bool|string|int|float|\UnitEnum|null $value)
45844552+ public function set(string $name, array|bool|string|int|float|\UnitEnum|null $value): void
45854553 {
45864554 if (is_numeric($name)) {
4587- @@ -122 ,5 +122 ,5 @@ class ParameterBag implements ParameterBagInterface
4555+ @@ -121 ,5 +121 ,5 @@ class ParameterBag implements ParameterBagInterface
45884556 * @throws ParameterNotFoundException if the parameter is not defined
45894557 */
45904558- public function deprecate(string $name, string $package, string $version, string $message = 'The parameter "%s" is deprecated.')
45914559+ public function deprecate(string $name, string $package, string $version, string $message = 'The parameter "%s" is deprecated.'): void
45924560 {
45934561 if (!\array_key_exists($name, $this->parameters)) {
4594- @@ -139 ,5 +139 ,5 @@ class ParameterBag implements ParameterBagInterface
4562+ @@ -138 ,5 +138 ,5 @@ class ParameterBag implements ParameterBagInterface
45954563 * @return void
45964564 */
45974565- public function remove(string $name)
45984566+ public function remove(string $name): void
45994567 {
46004568 unset($this->parameters[$name], $this->deprecatedParameters[$name]);
4601- @@ -147 ,5 +147 ,5 @@ class ParameterBag implements ParameterBagInterface
4569+ @@ -146 ,5 +146 ,5 @@ class ParameterBag implements ParameterBagInterface
46024570 * @return void
46034571 */
46044572- public function resolve()
46054573+ public function resolve(): void
46064574 {
46074575 if ($this->resolved) {
4608- @@ -259 ,5 +259 ,5 @@ class ParameterBag implements ParameterBagInterface
4576+ @@ -258 ,5 +258 ,5 @@ class ParameterBag implements ParameterBagInterface
46094577 * @return bool
46104578 */
46114579- public function isResolved()
@@ -8250,31 +8218,31 @@ index af21469b1c..7b024368c5 100644
82508218 {
82518219 }
82528220diff --git a/src/Symfony/Component/HttpKernel/Bundle/BundleInterface.php b/src/Symfony/Component/HttpKernel/Bundle/BundleInterface.php
8253- indexfe200629f4..692c41ec53 100644
8221+ index400a9e0c92..870cbe80e5 100644
82548222--- a/src/Symfony/Component/HttpKernel/Bundle/BundleInterface.php
82558223+++ b/src/Symfony/Component/HttpKernel/Bundle/BundleInterface.php
8256- @@ -29 ,5 +29 ,5 @@ interface BundleInterface extends ContainerAwareInterface
8224+ @@ -28 ,5 +28 ,5 @@ interface BundleInterface
82578225 * @return void
82588226 */
82598227- public function boot();
82608228+ public function boot(): void;
82618229
82628230 /**
8263- @@ -36 ,5 +36 ,5 @@ interface BundleInterface extends ContainerAwareInterface
8231+ @@ -35 ,5 +35 ,5 @@ interface BundleInterface
82648232 * @return void
82658233 */
82668234- public function shutdown();
82678235+ public function shutdown(): void;
82688236
82698237 /**
8270- @@ -45 ,5 +45 ,5 @@ interface BundleInterface extends ContainerAwareInterface
8238+ @@ -44 ,5 +44 ,5 @@ interface BundleInterface
82718239 * @return void
82728240 */
82738241- public function build(ContainerBuilder $container);
82748242+ public function build(ContainerBuilder $container): void;
82758243
82768244 /**
8277- @@ -72 ,4 +72 ,4 @@ interface BundleInterface extends ContainerAwareInterface
8245+ @@ -71 ,4 +71 ,4 @@ interface BundleInterface
82788246 * @return void
82798247 */
82808248- public function setContainer(?ContainerInterface $container);