mirror of
https://github.com/maximebf/php-debugbar.git
synced 2025-07-25 18:51:42 +02:00
Add ResetCollectorInterface
This commit is contained in:
24
src/DebugBar/DataCollector/ResetCollectorInterface.php
Normal file
24
src/DebugBar/DataCollector/ResetCollectorInterface.php
Normal 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();
|
||||||
|
}
|
Reference in New Issue
Block a user