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:06:14 +01:00
parent af99cba28c
commit 2122297fdb

View File

@ -231,7 +231,7 @@ class SecondLevelCacheSingleTableInheritanceTest extends SecondLevelCacheAbstrac
$contact = new Beach(
'Botafogo',
$this->_em->find(City::class, $this->cities[1]->getId())
$this->_em->find(City::CLASSNAME, $this->cities[1]->getId())
);
$this->_em->persist($contact);