Skip to content

Commit

Permalink
doctrine#6028 removed specific ::class usage, since 2.5.x still sup…
Browse files Browse the repository at this point in the history
…ports PHP 5.4.x
  • Loading branch information
Ocramius authored and alexgurrola committed Apr 13, 2017
1 parent de2460a commit 8ca8bb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public function testQueryCacheShouldBeEvictedOnTimestampUpdate()

$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);
Expand Down

0 comments on commit 8ca8bb5

Please sign in to comment.