-
-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add symfony profiler panel #858
Conversation
a69c381
to
c2ecd8d
Compare
4e94df4
to
a78670e
Compare
61f9981
to
e604727
Compare
Hey @goetas cool feature! I've just tested it. Can it be that calls to |
hmm. that can be, i do not remember testing that use case |
protected function loadFileIfFound($prefix, $dir, \ReflectionClass $class, $extension) | ||
{ | ||
$pathData = parent::loadFileIfFound($prefix, $dir, $class, $extension); | ||
|
||
if ($pathData[0] !== null) { | ||
$this->files[$class->getName()][$pathData[0]] = $pathData[1]; | ||
} | ||
return $pathData; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is broken. It doesn't seem to refer to anything in this project, and seems to never be called, thus not logging anything. I fixed it in #894.
inspired by #852