Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
namespace Symfony\Bridge\Monolog\Processor;

use Monolog\LogRecord;
use Monolog\ResettableInterface;
use Symfony\Component\Console\ConsoleEvents;
use Symfony\Component\Console\Event\ConsoleEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
Expand All @@ -22,7 +23,7 @@
*
* @author Piotr Stankowski <git@trakos.pl>
*/
final class ConsoleCommandProcessor implements EventSubscriberInterface, ResetInterface
final class ConsoleCommandProcessor implements EventSubscriberInterface, ResetInterface, ResettableInterface
{
private array $commandData;

Expand Down
3 changes: 2 additions & 1 deletion src/Symfony/Bridge/Monolog/Processor/DebugProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@

use Monolog\Level;
use Monolog\LogRecord;
use Monolog\ResettableInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\HttpKernel\Log\DebugLoggerInterface;
use Symfony\Contracts\Service\ResetInterface;

class DebugProcessor implements DebugLoggerInterface, ResetInterface
class DebugProcessor implements DebugLoggerInterface, ResetInterface, ResettableInterface
{
private array $records = [];
private array $errorCount = [];
Expand Down
3 changes: 2 additions & 1 deletion src/Symfony/Bridge/Monolog/Processor/RouteProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
namespace Symfony\Bridge\Monolog\Processor;

use Monolog\LogRecord;
use Monolog\ResettableInterface;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\Event\FinishRequestEvent;
use Symfony\Component\HttpKernel\Event\RequestEvent;
Expand All @@ -25,7 +26,7 @@
*
* @final
*/
class RouteProcessor implements EventSubscriberInterface, ResetInterface
class RouteProcessor implements EventSubscriberInterface, ResetInterface, ResettableInterface
{
private array $routeData = [];

Expand Down
Loading