1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-07-24 18:22:03 +02:00

Add ResetCollectorInterface

This commit is contained in:
Barry vd. Heuvel
2016-04-16 21:58:17 +02:00
parent d9302891c1
commit 6beae75060

View File

@@ -0,0 +1,24 @@
<?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;
/**
* DataReset Interface
*/
interface ResetCollectorInterface
{
/**
* Reset the collector to its initial state.
*
* @return void
*/
function reset();
}