Skip to content

Commit f3603e4

Browse files
committed
feature #58335 [Notifier] deprecate the TransportFactoryTestCase (xabbuh)
This PR was merged into the 7.2 branch. Discussion ---------- [Notifier] deprecate the TransportFactoryTestCase | Q | A | ------------- | --- | Branch? | 7.2 | Bug fix? | no | New feature? | no | Deprecations? | yes | Issues | Fix #54100 | License | MIT Commits ------- c8b0fcc77b deprecate the TransportFactoryTestCase
2 parents 54d9a95 + 5d2486d commit f3603e4

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Tests/ClickSendTransportFactoryTest.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,13 @@
1212
namespace Symfony\Component\Notifier\Bridge\ClickSend\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\ClickSend\ClickSendTransportFactory;
15-
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\AbstractTransportFactoryTestCase;
16+
use Symfony\Component\Notifier\Test\IncompleteDsnTestTrait;
1617

17-
final class ClickSendTransportFactoryTest extends TransportFactoryTestCase
18+
final class ClickSendTransportFactoryTest extends AbstractTransportFactoryTestCase
1819
{
20+
use IncompleteDsnTestTrait;
21+
1922
public function createFactory(): ClickSendTransportFactory
2023
{
2124
return new ClickSendTransportFactory();

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"require": {
2222
"php": ">=8.2",
2323
"symfony/http-client": "^6.4|^7.0",
24-
"symfony/notifier": "^6.4|^7.0"
24+
"symfony/notifier": "^7.2"
2525
},
2626
"require-dev": {
2727
"symfony/event-dispatcher": "^6.4|^7.0"

0 commit comments

Comments
 (0)