1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-07-27 11:40:25 +02:00
Files

36 lines
682 B
PHP

<?php
namespace DebugBar\Tests\DataCollector;
use DebugBar\DataCollector\DataCollector;
use DebugBar\DataCollector\WidgetProvider;
class MockCollector extends DataCollector implements WidgetProvider
{
protected $data;
protected $name;
protected $widgets;
public function __construct($data = array(), $name = 'mock', $widgets = array())
{
$this->data = $data;
$this->name = $name;
$this->widgets = $widgets;
}
public function collect()
{
return $this->data;
}
public function getName()
{
return $this->name;
}
public function getWidgets()
{
return $this->widgets;
}
}