From af99cba28cd292ecca8b95ccf15250804f6545c5 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Wed, 23 Nov 2016 18:02:15 +0100 Subject: [PATCH] #6028 removed specific `::class` usage, since 2.5.x still supports PHP 5.4.x --- .../ORM/Functional/SecondLevelCacheJoinTableInheritanceTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheJoinTableInheritanceTest.php b/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheJoinTableInheritanceTest.php index 9864172fa..5e70effee 100644 --- a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheJoinTableInheritanceTest.php +++ b/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheJoinTableInheritanceTest.php @@ -211,7 +211,7 @@ class SecondLevelCacheJoinTableInheritanceTest extends SecondLevelCacheAbstractT $contact = new AttractionContactInfo( '1234-1234', - $this->_em->find(Attraction::class, $this->attractions[5]->getId()) + $this->_em->find(Attraction::CLASSNAME, $this->attractions[5]->getId()) ); $this->_em->persist($contact);