function PhpConfigDataCollector::getPanelSummary

Overrides DrupalDataCollectorInterface::getPanelSummary

File

webprofiler/src/DataCollector/PhpConfigDataCollector.php, line 146

Class

PhpConfigDataCollector
Provides a data collector to collect all kind of php information.

Namespace

Drupal\webprofiler\DataCollector

Code

public function getPanelSummary() {
    return $this->t('PHP: @version', [
        '@version' => $this->getPhpVersion(),
    ]);
}