Skip to content

Commit

Permalink
Fix wrong return type hint for selectManager (#57)
Browse files Browse the repository at this point in the history
Fix wrong return type hint for selectManager
  • Loading branch information
ostrolucky authored Apr 23, 2019
2 parents 89b7d83 + c2707d5 commit 3da7c9d
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 3da7c9d

Please sign in to comment.