1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-16 21:08:34 +01:00

Merge pull request #245 from pavankumarkatakam/master

Added PHP_SAPI in Php data collector
This commit is contained in:
Barry vd. Heuvel 2016-01-05 08:56:08 +01:00
commit 173f33493f

View File

@ -18,7 +18,8 @@ class PhpInfoCollector extends DataCollector
public function collect()
{
return array(
'version' => PHP_VERSION
'version' => PHP_VERSION,
'interface' => PHP_SAPI
);
}