We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82a78e7 commit 7e88dbfCopy full SHA for 7e88dbf
1 file changed
tests/MapTest.php
@@ -1344,6 +1344,7 @@ public function testGetArray()
1344
1345
$class = new \ReflectionClass( $map );
1346
$method = $class->getMethod( 'array' );
1347
+ $method->setAccessible( true );
1348
$items = new \ArrayIterator( ['foo' => 'bar'] );
1349
$array = $method->invokeArgs( $map, [$items] );
1350
$this->assertSame( ['foo' => 'bar'], $array );
0 commit comments