1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-21 08:36:33 +02:00

Fix some resettableinterface usages

This commit is contained in:
Jordi Boggiano
2018-11-04 19:58:13 +01:00
parent 36b767dc02
commit dddc7ed781
6 changed files with 23 additions and 10 deletions

View File

@@ -28,7 +28,7 @@ use Monolog\ResettableInterface;
*
* @author Jordi Boggiano <j.boggiano@seld.be>
*/
class FingersCrossedHandler extends Handler implements ProcessableHandlerInterface
class FingersCrossedHandler extends Handler implements ProcessableHandlerInterface, ResettableInterface
{
use ProcessableHandlerTrait;
@@ -148,8 +148,6 @@ class FingersCrossedHandler extends Handler implements ProcessableHandlerInterfa
*/
public function reset()
{
parent::reset();
$this->buffer = array();
$this->buffering = true;