Skip to content

Commit 2f743cd

Browse files
Merge branch '4.4'
* 4.4: Fix assertInternalType deprecation in phpunit 9 Micro-typo fix add parameter type declarations to private methods
2 parents ba2e533 + e6f7111 commit 2f743cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Parser/ReaderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function testToEnd()
9393
$this->assertTrue($reader->isEOF());
9494
}
9595

96-
private function assignPosition(Reader $reader, $value)
96+
private function assignPosition(Reader $reader, int $value)
9797
{
9898
$position = new \ReflectionProperty($reader, 'position');
9999
$position->setAccessible(true);

0 commit comments

Comments
 (0)