public function PhpConfigDataCollector::getPhpVersion in Devel 8
Same name and namespace in other branches
- 8.3 webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::getPhpVersion()
- 8.2 webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::getPhpVersion()
- 4.x webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::getPhpVersion()
Gets the PHP version.
Return value
string The PHP version
1 call to PhpConfigDataCollector::getPhpVersion()
- PhpConfigDataCollector::getPanelSummary in webprofiler/
src/ DataCollector/ PhpConfigDataCollector.php - Returns the string used in vertical tab summary.
File
- webprofiler/
src/ DataCollector/ PhpConfigDataCollector.php, line 51
Class
- PhpConfigDataCollector
- Provides a data collector to collect all kind of php information.
Namespace
Drupal\webprofiler\DataCollectorCode
public function getPhpVersion() {
return $this->data['php_version'];
}