8000 [Notifier] make Message classes extensible by bitgandtter · Pull Request #45402 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Notifier] make Message classes extensible #45402

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Message/ChatMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*/
final class ChatMessage implements MessageInterface
class ChatMessage implements MessageInterface
{
private ?string $transport = null;
private string $subject;
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Message/EmailMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*/
final class EmailMessage implements MessageInterface
class EmailMessage implements MessageInterface
{
private RawMessage $message;
private ?Envelope $envelope;
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Message/PushMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* @author Tomas Norkūnas <norkunas.tom@gmail.com>
*/
final class PushMessage implements MessageInterface
class PushMessage implements MessageInterface
{
private $transport;
private $subject;
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Notifier/Message/SmsMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* @author Fabien Potencier <fabien@symfony.com>
*/
final class SmsMessage implements MessageInterface
class SmsMessage implements MessageInterface
{
private ?string $transport = null;
private string $subject;
Expand Down
0