Skip to content

Commit 5ffd2af

Browse files
committed
fix code style
1 parent f6b051f commit 5ffd2af

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Test/TransportFactoryTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function incompleteDsnProvider(): iterable
5454
/**
5555
* @dataProvider supportsProvider
5656
*/
57-
public function testSupports(Dsn $dsn, bool $supports): void
57+
public function testSupports(Dsn $dsn, bool $supports)
5858
{
5959
$factory = $this->getFactory();
6060

Tests/Transport/DsnTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class DsnTest extends TestCase
2020
/**
2121
* @dataProvider fromStringProvider
2222
*/
23-
public function testFromString(string $string, Dsn $dsn): void
23+
public function testFromString(string $string, Dsn $dsn)
2424
{
2525
$this->assertEquals($dsn, Dsn::fromString($string));
2626
}

Tests/TransportTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class TransportTest extends TestCase
2727
/**
2828
* @dataProvider fromStringProvider
2929
*/
30-
public function testFromString(string $dsn, TransportInterface $transport): void
30+
public function testFromString(string $dsn, TransportInterface $transport)
3131
{
3232
$transportFactory = new Transport([new DummyTransportFactory()]);
3333

0 commit comments

Comments
 (0)