dependencies-upgrade
This commit is contained in:
18
vendor/barryvdh/laravel-debugbar/src/DataCollector/PhpInfoCollector.php
vendored
Normal file
18
vendor/barryvdh/laravel-debugbar/src/DataCollector/PhpInfoCollector.php
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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');
|
||||
});
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user