Skip to content

Commit 246079c

Browse files
committedAug 8, 2019
Disable phpunit typehint patch on 4.3 branch
1 parent 50c3eb9 commit 246079c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎Tests/ClockMockTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
*/
2222
class ClockMockTest extends TestCase
2323
{
24-
public static function setUpBeforeClass()
24+
public static function setUpBeforeClass(): void
2525
{
2626
ClockMock::register(__CLASS__);
2727
}
2828

29-
protected function setUp()
29+
protected function setUp(): void
3030
{
3131
ClockMock::withClockMock(1234567890.125);
3232
}

‎Tests/DnsMockTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
class DnsMockTest extends TestCase
1818
{
19-
protected function tearDown()
19+
protected function tearDown(): void
2020
{
2121
DnsMock::withMockedHosts(array());
2222
}

0 commit comments

Comments
 (0)