File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ protected function renderLoadedServices() : string
138
138
<tr>
139
139
<th>Service</th>
140
140
<th>Instances</th>
141
- <th title="Seconds ">Time to Load</th>
141
+ <th title="Milliseconds ">Time to Load</th>
142
142
</tr>
143
143
</thead>
144
144
<tbody>
@@ -147,12 +147,12 @@ protected function renderLoadedServices() : string
147
147
<tr>
148
148
<td rowspan="<?= $ count ?> "><?= $ service ?> </td>
149
149
<td><?= $ data [0 ]['name ' ] ?> </td>
150
- <td><?= \round ($ data [0 ]['end ' ] - $ data [0 ]['start ' ], 6 ) ?> </td>
150
+ <td><?= Debugger:: roundSecondsToMilliseconds ($ data [0 ]['end ' ] - $ data [0 ]['start ' ]) ?> </td>
151
151
</tr>
152
152
<?php for ($ i = 1 ; $ i < $ count ; $ i ++): ?>
153
153
<tr>
154
154
<td><?= $ data [$ i ]['name ' ] ?> </td>
155
- <td><?= \round ($ data [$ i ]['end ' ] - $ data [$ i ]['start ' ], 6 ) ?> </td>
155
+ <td><?= Debugger:: roundSecondsToMilliseconds ($ data [$ i ]['end ' ] - $ data [$ i ]['start ' ]) ?> </td>
156
156
</tr>
157
157
<?php endfor ?>
158
158
<?php endforeach ?>
You can’t perform that action at this time.
0 commit comments