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.
1 parent 7a1dde3 commit fe83f2eCopy full SHA for fe83f2e
src/Debug/LanguageCollector.php
@@ -79,7 +79,7 @@ protected function renderRenderedMessages() : string
79
$count = \count($this->getData());
80
\ob_start(); ?>
81
<p><?= $count ?> message<?= $count === 1 ? '' : 's' ?> has been rendered
82
- in <?= $this->getStatementsTime() ?> ms:
+ in <?= $this->getMessagesRenderingTime() ?> ms:
83
</p>
84
<table>
85
<thead>
@@ -111,7 +111,7 @@ protected function renderRenderedMessages() : string
111
return \ob_get_clean(); // @phpstan-ignore-line
112
}
113
114
- protected function getStatementsTime() : float
+ protected function getMessagesRenderingTime() : float
115
{
116
$time = .0;
117
foreach ($this->getData() as $data) {
0 commit comments