* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog; /** * Handler or Processor implementing this interface will be reset when Logger::reset() is called. * * Resetting an Handler or a Processor usually means cleaning all buffers or * resetting in its internal state. * * @author Grégoire Pineau */ interface ResettableInterface { public function reset(); }