8000 [Notifer] fix merge · symfony/symfony@abc4c93 · GitHub
[go: up one dir, main page]

Skip to content

Commit abc4c93

Browse files
[Notifer] fix merge
1 parent 00bbe9e commit abc4c93

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

src/Symfony/Component/Notifier/Bridge/Vonage/Tests/VonageTransportFactoryTest.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@
1717

1818
final class VonageTransportFactoryTest extends TransportFactoryTestCase
1919
{
20-
/**
21-
* @return VonageTransportFactory
22-
*/
23-
public function createFactory(): TransportFactoryInterface
20+
public function createFactory(): VonageTransportFactory
2421
{
2522
return new VonageTransportFactory();
2623
}

src/Symfony/Component/Notifier/Bridge/Vonage/Tests/VonageTransportTest.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@
2121

2222
final class VonageTransportTest extends TransportTestCase
2323
{
24-
/**
25-
* @return VonageTransport
26-
*/
27-
public function createTransport(HttpClientInterface $client = null): TransportInterface
24+
public function createTransport(HttpClientInterface $client = null): VonageTransport
2825
{
2926
return new VonageTransport('apiKey', 'apiSecret', 'sender', $client ?? $this->createMock(HttpClientInterface::class));
3027
}

src/Symfony/Component/Notifier/Bridge/Vonage/VonageTransportFactory.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@
2121
*/
2222
final class VonageTransportFactory extends AbstractTransportFactory
2323
{
24-
/**
25-
* @return VonageTransport
26-
*/
27-
public function create(Dsn $dsn): TransportInterface
24+
public function create(Dsn $dsn): VonageTransport
2825
{
2926
$scheme = $dsn->getScheme();
3027

0 commit comments

Comments
 (0)
0