Skip to content

Commit bcfa054

Browse files
Merge branch '6.4' into 7.0
* 6.4: More go-ip fixes [AssetMapper] Fixing bug where a circular exception could be thrown while making error message Dump Valid constaints on debug command #46544 [DependencyInjection] fix dump xml with array/object/enum default value fix directory casing rename GoIP notifier bridge to GopIp [HttpFoundation] Add a slightly more verbose comment about a warning on UploadedFile [Messenger] BatchHandlerTrait - fix phpdoc typo [SecurityBundle] Remove unused test files Allow passing an `inline_service` to a `service_locator` [Security] Fix error with lock_factory in login_throttling fix(console): fix section output when multiples section with max height Remove me from CODEOWNERS Fix invalid method call + improve exception message Always return bool from messenger amqp conncetion nack [FrameworkBundle] Fix xsd handle-all-throwables [Console] Fix linewraps in OutputFormatter
2 parents e15d748 + 4067521 commit bcfa054

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Exception/UnsupportedSchemeException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ class UnsupportedSchemeException extends LogicException
9393
'package' => 'symfony/gitter-notifier',
9494
],
9595
'goip' => [
96-
'class' => Bridge\GoIP\GoIPTransportFactory::class,
97-
'package' => 'symfony/goip-notifier',
96+
'class' => Bridge\GoIp\GoIpTransportFactory::class,
97+
'package' => 'symfony/go-ip-notifier',
9898
],
9999
'googlechat' => [
100100
'class' => Bridge\GoogleChat\GoogleChatTransportFactory::class,

Tests/Exception/UnsupportedSchemeExceptionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public static function setUpBeforeClass(): void
4545
Bridge\FreeMobile\FreeMobileTransportFactory::class => false,
4646
Bridge\GatewayApi\GatewayApiTransportFactory::class => false,
4747
Bridge\Gitter\GitterTransportFactory::class => false,
48-
Bridge\GoIP\GoIPTransportFactory::class => false,
48+
Bridge\GoIp\GoIpTransportFactory::class => false,
4949
Bridge\GoogleChat\GoogleChatTransportFactory::class => false,
5050
Bridge\Infobip\InfobipTransportFactory::class => false,
5151
Bridge\Iqsms\IqsmsTransportFactory::class => false,
@@ -171,7 +171,7 @@ public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \
171171
yield ['twitter', 'symfony/twitter-notifier'];
172172
yield ['zendesk', 'symfony/zendesk-notifier'];
173173
yield ['zulip', 'symfony/zulip-notifier'];
174-
yield ['goip', 'symfony/goip-notifier'];
174+
yield ['goip', 'symfony/go-ip-notifier'];
175175
}
176176

177177
/**

Transport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ final class Transport
4747
Bridge\FreeMobile\FreeMobileTransportFactory::class,
4848
Bridge\GatewayApi\GatewayApiTransportFactory::class,
4949
Bridge\Gitter\GitterTransportFactory::class,
50-
Bridge\GoIP\GoIPTransportFactory::class,
50+
Bridge\GoIp\GoIpTransportFactory::class,
5151
Bridge\GoogleChat\GoogleChatTransportFactory::class,
5252
Bridge\Infobip\InfobipTransportFactory::class,
5353
Bridge\Iqsms\IqsmsTransportFactory::class,

0 commit comments

Comments
 (0)