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 934e826 + 2c2f0c8 commit 64d024fCopy full SHA for 64d024f
ManagerRegistry.php
@@ -61,6 +61,8 @@ function (&$wrappedInstance, LazyLoadingInterface $manager) use ($name) {
61
}
62
if (isset($this->fileMap[$name])) {
63
$wrappedInstance = $this->load($this->fileMap[$name], false);
64
+ } elseif ((new \ReflectionMethod($this, $this->methodMap[$name]))->isStatic()) {
65
+ $wrappedInstance = $this->{$this->methodMap[$name]}($this, false);
66
} else {
67
$wrappedInstance = $this->{$this->methodMap[$name]}(false);
68
0 commit comments