function HttpDataCollector::getPanelSummary

Overrides DrupalDataCollectorInterface::getPanelSummary

File

webprofiler/src/DataCollector/HttpDataCollector.php, line 160

Class

HttpDataCollector
Collects data about http calls during request.

Namespace

Drupal\webprofiler\DataCollector

Code

public function getPanelSummary() {
    return $this->t('Completed @completed, error @error', [
        '@completed' => $this->getCompletedRequestsCount(),
        '@error' => $this->getFailedRequestsCount(),
    ]);
}