Skip to content

Commit 85d50a5

Browse files
Merge branch '5.3' into 5.4
* 5.3: fix cs Update validators.lv.xlf Fix API gateway service name Fix CS in composer.json Update validators.uz.xlf [ExpressionLanguage] Fix LexerTest number types [Process] intersect with getenv() to populate default envs Improve CI script a bit Fix Loco Provider [Cache] fix dbindex Redis Fix typos in a test message Never rely on dynamic properties
2 parents 61755fe + 1b9a792 commit 85d50a5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Resources/config/notifier_transports.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
->parent('notifier.transport_factory.abstract')
119119
->tag('texter.transport_factory')
120120

121-
->set('notifier.transport_factory.all-my-sms', AllMySmsTransportFactory::class)
121+
->set('notifier.transport_factory.allmysms', AllMySmsTransportFactory::class)
122122
->parent('notifier.transport_factory.abstract')
123123
->tag('texter.transport_factory')
124124

@@ -190,7 +190,7 @@
190190
->parent('notifier.transport_factory.abstract')
191191
->tag('chatter.transport_factory')
192192

193-
->set('notifier.transport_factory.gateway-api', GatewayApiTransportFactory::class)
193+
->set('notifier.transport_factory.gatewayapi', GatewayApiTransportFactory::class)
194194
->parent('notifier.transport_factory.abstract')
195195
->tag('texter.transport_factory')
196196

Tests/DependencyInjection/FrameworkExtensionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1985,7 +1985,7 @@ public function testIfNotifierTransportsAreKnownByFrameworkExtension()
19851985

19861986
foreach ((new Finder())->in(\dirname(__DIR__, 4).'/Component/Notifier/Bridge')->directories()->depth(0)->exclude('Mercure') as $bridgeDirectory) {
19871987
$transportFactoryName = strtolower(preg_replace('/(.)([A-Z])/', '$1-$2', $bridgeDirectory->getFilename()));
1988-
$this->assertTrue($container->hasDefinition('notifier.transport_factory.'.$transportFactoryName), sprintf('Did you forget to add the TransportFactory: "%s" to the $classToServices array in the FrameworkBundleExtension?', $bridgeDirectory->getFilename()));
1988+
$this->assertTrue($container->hasDefinition('notifier.transport_factory.'.$transportFactoryName), sprintf('Did you forget to add the "%s" TransportFactory to the $classToServices array in FrameworkExtension?', $bridgeDirectory->getFilename()));
19891989
}
19901990
}
19911991

0 commit comments

Comments
 (0)