Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/4246' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/View.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public function setEventManager(EventManagerInterface $events)
{
$events->setIdentifiers(array(
__CLASS__,
get_called_class(),
get_class($this),
));
$this->events = $events;
return $this;
Expand Down
2 changes: 1 addition & 1 deletion test/Helper/TestAsset/Stringified.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ class Stringified
{
public function __toString()
{
return get_called_class();
return get_class($this);
}
}

0 comments on commit c7ba6af

Please sign in to comment.