Skip to content

Commit 2fee131

Browse files
committed
Use ::class keyword when possible
1 parent 90e8363 commit 2fee131

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)