Skip to content

Commit 372678d

Browse files
Merge branch '5.0'
* 5.0: [Debug] fix ClassNotFoundFatalErrorHandler [FrameworkBundle] Document the router.cache_class_prefix parameter removal [Routing] Fix using a custom matcher & generator dumper class [Notifier] Add more specific types at documentation level when php engine can't [Serializer] Fix cache in MetadataAwareNameConverter [Dotenv] Fixed infinite loop with missing quote followed by quoted value [HttpClient] Added missing sprintf [TwigBridge] button_widget now has its title attr translated even if its label = null or false [PhpUnitBridge] When using phpenv + phpenv-composer plugin, composer executable is wrapped into a bash script [Messenger] Added check if json_encode succeeded [Messenger] Added check if json_encode succeeded [FrameworkBundle][ContainerLintCommand] Only skip .errored. services [HttpClient] fix exception in case of PSR17 discovery failure [DependencyInjection] Handle ServiceClosureArgument for callable in container linting fix processing chain adapter based cache pool [HttpKernel] release lock explicitly [Security] Prevent canceled remember-me cookie from being accepted [FrameworkBundle][TranslationUpdateCommand] Do not output positive feedback on stderr [Security\Guard] Fix missing typehints do not render preferred choices as selected
2 parents 373b3b3 + 5fbecff commit 372678d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Message/SmsMessage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function getPhone(): string
5858
return $this->phone;
5959
}
6060

61-
public function getRecipientId(): ?string
61+
public function getRecipientId(): string
6262
{
6363
return $this->phone;
6464
}

Transport/NullTransportFactory.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
*/
2121
final class NullTransportFactory extends AbstractTransportFactory
2222
{
23+
/**
24+
* @return NullTransport
25+
*/
2326
public function create(Dsn $dsn): TransportInterface
2427
{
2528
if ('null' === $dsn->getScheme()) {

0 commit comments

Comments
 (0)