diff -ru src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php --- src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php 2022-06-23 07:49:33.016503743 +0000 +++ src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php 2022-06-23 07:50:24.538597755 +0000 @@ -970,7 +970,7 @@ if (isset($workflow['marking_store']['type'])) { $markingStoreDefinition = new ChildDefinition('workflow.marking_store.method'); $markingStoreDefinition->setArguments([ - 'state_machine' === $type, //single state + 'state_machine' === $type, // single state $workflow['marking_store']['property'], ]); } elseif (isset($workflow['marking_store']['service'])) { diff -ru src/Symfony/Bundle/FrameworkBundle/Tests/Command/MailerSendCommandTest.php src/Symfony/Bundle/FrameworkBundle/Tests/Command/MailerSendCommandTest.php --- src/Symfony/Bundle/FrameworkBundle/Tests/Command/MailerSendCommandTest.php 2022-06-23 07:49:33.400511897 +0000 +++ src/Symfony/Bundle/FrameworkBundle/Tests/Command/MailerSendCommandTest.php 2022-06-23 07:50:26.432637973 +0000 @@ -34,8 +34,8 @@ ->expects($this->once()) ->method('send') ->with(self::callback(static function (Email $message) use ($from, $to, $subject, $body): bool { - return - $message->getFrom()[0]->getAddress() === $from && + return + $message->getFrom()[0]->getAddress() === $from && $message->getTo()[0]->getAddress() === $to && $message->getSubject() === $subject && $message->getTextBody() === $body