-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Redesigned the Symfony Profiler #15523
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
Changes from 1 commit
b267347
4e66c45
b7f604c
3cdf546
0a58431
9dc561c
10f1fbb
a5f367c
6ca6b2f
22841fc
7cbced0
50a60d5
656739e
b3aa953
376f1be
3f6f747
ab133e1
904c618
8a2a7cd
4e81feb
688e3f7
e47339b
3ac9100
edb5e5e
4139c6b
14b7cf5
a1d2e24
489fbd6
437a67b
72a64e3
f79894f
2b55b9b
79f7297
50d5f59
14e725f
b254b69
67ef234
f971509
ac6f79a
ac63334
a808fa5
73809a8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
10000
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,7 +94,7 @@ | |
{% endif %} | ||
{% endfor %} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. adding methods doing this grouping in the DataCollector would allow to make it better than in Twig (which is not well suited for manipulating data to group it) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You are right, but I'd prefer to optimize this in the future. |
||
|
||
<div class="tabs"> | ||
<div class="sf-tabs"> | ||
<div class="tab"> | ||
<h3 class="tab-title">Defined <span class="badge">{{ collector.countdefines }}</span></h3> | ||
|
||
|
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.
if we add a new state in the future, this would just drop it into nowhere, making it hard to debug why they don't appear (and maybe not making it clear that something is missing btw)
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.
You are right again :) But if we add a new state, I'm afraid that it's not going to be displayed in any way. Sorting messages is only part of the solution. The other part is actually displaying those messages and this is not ready for other states. But we can easily deal with this when the time comes.