File "PhpInfoCollector.php"
Full Path: /home/isoftco/public_html/hrm/vendor/barryvdh/laravel-debugbar/src/DataCollector/PhpInfoCollector.php
File size: 411 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Barryvdh\Debugbar\DataCollector;
use DebugBar\DataCollector\PhpInfoCollector as DebugBarPhpInfoCollector;
class PhpInfoCollector extends DebugBarPhpInfoCollector
{
/**
* @inheritDoc
*/
public function getWidgets()
{
return tap(parent::getWidgets(), function (&$widgets) {
data_set($widgets, 'php_version.tooltip', 'PHP Version');
});
}
}