1
0
mirror of synced 2025-02-02 13:31:45 +03:00

#6028 removed specific ::class usage, since 2.5.x still supports PHP 5.4.x

This commit is contained in:
Marco Pivetta 2016-11-23 18:02:15 +01:00
parent 9bcee455ca
commit af99cba28c

View File

@ -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);