Skip to content

Commit e7e5aff

Browse files
Merge branch '6.4' into 7.0
* 6.4: [Mime] Fix lowest versions of deps [VarDumper] Fix calling scope detection inside magic accessors [Validator] add missing German translations fix deprecation versions update the Brevo SMTP host Remove \ReflectionProperty::setAccessible(true) calls [Serializer] Fix denormalizing abstract part headers in MimeMessageNormalizer Fix property must not be accessed before initialization on SymfonyRuntime::$input [Form] Remove an obsolete phpdoc comment [Webhook] Allow slash in webhook type Use more "First class callable syntax" + Normalize set_error_handler/set_exception_handler calls [FrameworkBundle][Workflow] Throw exception is workflow.xxx.transitions is not an array
2 parents 5f42344 + dfe085d commit e7e5aff

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

Tests/Transport/RoundRobinTransportTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ public function testSendAllDead()
6262
$t2->expects($this->once())->method('send')->will($this->throwException(new TransportException()));
6363
$t = new RoundRobinTransport([$t1, $t2]);
6464
$p = new \ReflectionProperty($t, 'cursor');
65-
$p->setAccessible(true);
6665
$p->setValue($t, 0);
6766

6867
try {

Tests/Transport/Smtp/SmtpTransportTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ private function invokeAssertResponseCode(string $response, array $codes): void
162162
{
163163
$transport = new SmtpTransport($this->getMockForAbstractClass(AbstractStream::class));
164164
$m = new \ReflectionMethod($transport, 'assertResponseCode');
165-
$m->setAccessible(true);
166165
$m->invoke($transport, $response, $codes);
167166
}
168167

0 commit comments

Comments
 (0)