1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-06-02 04:04:55 +02:00
php-debugbar/src/DebugBar/DataCollector/DependencyCollector.php
2013-06-13 18:49:55 +08:00

31 lines
529 B
PHP

<?php
/*
* This file is part of the DebugBar package.
*
* (c) 2013 Maxime Bouroumeau-Fuseau
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace DebugBar\DataCollector;
class DependencyCollector extends DataCollector
{
/**
* {@inheritDoc}
*/
public function collect()
{
return array();
}
/**
* {@inheritDoc}
*/
public function getName()
{
return 'dependency';
}
}