We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9cbab67 + 9359ce4 commit 9fc4bebCopy full SHA for 9fc4beb
ManagerRegistry.php
@@ -58,6 +58,8 @@ function (&$wrappedInstance, LazyLoadingInterface $manager) use ($name) {
58
}
59
if (isset($this->fileMap[$name])) {
60
$wrappedInstance = $this->load($this->fileMap[$name], false);
61
+ } elseif ((new \ReflectionMethod($this, $this->methodMap[$name]))->isStatic()) {
62
+ $wrappedInstance = $this->{$this->methodMap[$name]}($this, false);
63
} else {
64
$wrappedInstance = $this->{$this->methodMap[$name]}(false);
65
0 commit comments