Skip to content

Commit 41e50bd

Browse files
committed
Merge branch '5.2' into 5.x
* 5.2: Use ::class keyword when possible
2 parents 4d4c3c5 + 2fee131 commit 41e50bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Data/Bundle/Reader/IntlBundleReaderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function testReadDoesNotFollowFallbackAlias()
6666
// "mo" = "ro_MD" -> "ro"
6767
$data = $this->reader->read(__DIR__.'/Fixtures/res', 'mo');
6868

69-
$this->assertInstanceOf('\ArrayAccess', $data);
69+
$this->assertInstanceOf(\ArrayAccess::class, $data);
7070
$this->assertSame('Bam', $data['Baz'], 'data from the aliased locale can be accessed');
7171
$this->assertArrayNotHasKey('Foo', $data);
7272
$this->assertNull($data['Foo']);

0 commit comments

Comments
 (0)