Skip to content

Commit

Permalink
Fix wrong return type hint for selectManager
Browse files Browse the repository at this point in the history
  • Loading branch information
alcaeus committed Apr 23, 2019
1 parent 89b7d83 commit c2707d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public function resetManager($name = null)
return $this->getManager($name);
}

private function selectManager(string $persistentObjectName, ?string $persistentManagerName = null) : ?ObjectManager
private function selectManager(string $persistentObjectName, ?string $persistentManagerName = null) : ObjectManager
{
if ($persistentManagerName !== null) {
return $this->getManager($persistentManagerName);
Expand Down

0 comments on commit c2707d5

Please sign in to comment.