Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ CHANGELOG
-----

* The bridge is not marked as `@experimental` anymore
* [BC BREAK] `LinkedInTransportFactory` is now final
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't it be reported in UPGRADE-5.3.md?


5.2.0
-----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* @author Smaïne Milianni <smaine.milianni@gmail.com>
*/
class LinkedInTransportFactory extends AbstractTransportFactory
final class LinkedInTransportFactory extends AbstractTransportFactory
{
public function create(Dsn $dsn): TransportInterface
{
Expand Down
7 changes: 7 additions & 0 deletions src/Symfony/Component/Notifier/Bridge/Smsapi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CHANGELOG
=========

5.3.0
-----

* Added the bridge
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@

/**
* @author Marcin Szepczynski <szepczynski@gmail.com>
*
* @experimental in 5.3
*/
final class SmsapiTransport extends AbstractTransport
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@

/**
* @author Marcin Szepczynski <szepczynski@gmail.com>
*
* @experimental in 5.3
*/
class SmsapiTransportFactory extends AbstractTransportFactory
final class SmsapiTransportFactory extends AbstractTransportFactory
{
/**
* @return SmsapiTransport
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/Notifier/Bridge/Zulip/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ CHANGELOG
-----

* The bridge is not marked as `@experimental` anymore
* [BC BREAK] `ZulipTransport` is now final
* [BC BREAK] `ZulipTransportFactory` is now final
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same


5.2.0
-----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* @author Mohammad Emran Hasan <phpfour@gmail.com>
*/
class ZulipTransport extends AbstractTransport
final class ZulipTransport extends AbstractTransport
{
private $email;
private $token;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* @author Mohammad Emran Hasan <phpfour@gmail.com>
*/
class ZulipTransportFactory extends AbstractTransportFactory
final class ZulipTransportFactory extends AbstractTransportFactory
{
/**
* @return ZulipTransport
Expand Down