Skip to content

Commit a53f7c9

Browse files
committed
Disable phpunit typehint patch on 4.3 branch
1 parent b817fb2 commit a53f7c9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Tests/PropertyAccessorArrayAccessTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ abstract class PropertyAccessorArrayAccessTest extends TestCase
2222
*/
2323
protected $propertyAccessor;
2424

25-
protected function setUp()
25+
protected function setUp(): void
2626
{
2727
$this->propertyAccessor = new PropertyAccessor();
2828
}

Tests/PropertyAccessorBuilderTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ class PropertyAccessorBuilderTest extends TestCase
2323
*/
2424
protected $builder;
2525

26-
protected function setUp()
26+
protected function setUp(): void
2727
{
2828
$this->builder = new PropertyAccessorBuilder();
2929
}
3030

31-
protected function tearDown()
31+
protected function tearDown(): void
3232
{
3333
$this->builder = null;
3434
}

Tests/PropertyAccessorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class PropertyAccessorTest extends TestCase
3434
*/
3535
private $propertyAccessor;
3636

37-
protected function setUp()
37+
protected function setUp(): void
3838
{
3939
$this->propertyAccessor = new PropertyAccessor();
4040
}

Tests/PropertyPathBuilderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class PropertyPathBuilderTest extends TestCase
2727
*/
2828
private $builder;
2929

30-
protected function setUp()
30+
protected function setUp(): void
3131
{
3232
$this->builder = new PropertyPathBuilder(new PropertyPath(self::PREFIX));
3333
}

0 commit comments

Comments
 (0)