Skip to content

Commit ed1cb82

Browse files
committed
Merge branch '6.4' into 7.0
* 6.4: (99 commits) [HttpClient][Messenger] add `PingWebhookMessage` and `PingWebhookMessageHandler` Use Stringable interface as much as possible [Messenger][Process] add `RunProcessMessage` and `RunProcessMessageHandler` Add generics to the progress bar iteration methods [SecurityBundle] Allow an array of `pattern` in firewall configuration [FrameworkBundle] Simplify marking store configuration [PsrHttpMessageBridge] Patch return types and fix CS [PsrHttpMessageBridge] Import the bridge into the monorepo Prepare release 2.3.1 Fix CS Don't rely on Request::getPayload() to populate the parsed body Prepare release 2.3.0 Implement ValueResolverInterface Leverage `Request::getPayload()` to populate the parsed body of PSR-7 requests Add native types where possible cs fix Prepare the 2.2.0 release Bump psr/http-message version Drop support for Symfony 4 Adjustments for PHP CS Fixer 3 ...
2 parents ee09498 + 5fc99a9 commit ed1cb82

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Authentication/Token/TokenInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @author Fabien Potencier <fabien@symfony.com>
2020
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
2121
*/
22-
interface TokenInterface
22+
interface TokenInterface extends \Stringable
2323
{
2424
/**
2525
* Returns a string representation of the Token.

User/InMemoryUser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @author Robin Chalas <robin.chalas@gmail.com>
2020
* @author Fabien Potencier <fabien@symfony.com>
2121
*/
22-
final class InMemoryUser implements UserInterface, PasswordAuthenticatedUserInterface, EquatableInterface
22+
final class InMemoryUser implements UserInterface, PasswordAuthenticatedUserInterface, EquatableInterface, \Stringable
2323
{
2424
private string $username;
2525
private ?string $password;

0 commit comments

Comments
 (0)