Skip to content

Commit a595774

Browse files
committed
1 parent 6a029ec commit a595774

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/Symfony/Bridge/Monolog/Processor/ConsoleCommandProcessor.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
namespace Symfony\Bridge\Monolog\Processor;
1313

1414
use Monolog\LogRecord;
15+
use Monolog\ResettableInterface;
1516
use Symfony\Component\Console\ConsoleEvents;
1617
use Symfony\Component\Console\Event\ConsoleEvent;
1718
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
@@ -22,7 +23,7 @@
2223
*
2324
* @author Piotr Stankowski <git@trakos.pl>
2425
*/
25-
final class ConsoleCommandProcessor implements EventSubscriberInterface, ResetInterface
26+
final class ConsoleCommandProcessor implements EventSubscriberInterface, ResetInterface, ResettableInterface
2627
{
2728
private array $commandData;
2829

src/Symfony/Bridge/Monolog/Processor/DebugProcessor.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313

1414
use Monolog\Level;
1515
use Monolog\LogRecord;
16+
use Monolog\ResettableInterface;
1617
use Symfony\Component\HttpFoundation\Request;
1718
use Symfony\Component\HttpFoundation\RequestStack;
1819
use Symfony\Component\HttpKernel\Log\DebugLoggerInterface;
1920
use Symfony\Contracts\Service\ResetInterface;
2021

21-
class DebugProcessor implements DebugLoggerInterface, ResetInterface
22+
class DebugProcessor implements DebugLoggerInterface, ResetInterface, ResettableInterface
2223
{
2324
private array $records = [];
2425
private array $errorCount = [];

src/Symfony/Bridge/Monolog/Processor/RouteProcessor.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
namespace Symfony\Bridge\Monolog\Processor;
1313

1414
use Monolog\LogRecord;
15+
use Monolog\ResettableInterface;
1516
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
1617
use Symfony\Component\HttpKernel\Event\FinishRequestEvent;
1718
use Symfony\Component\HttpKernel\Event\RequestEvent;
@@ -25,7 +26,7 @@
2526
*
2627
* @final
2728
*/
28-
class RouteProcessor implements EventSubscriberInterface, ResetInterface
29+
class RouteProcessor implements EventSubscriberInterface, ResetInterface, ResettableInterface
2930
{
3031
private array $routeData = [];
3132

0 commit comments

Comments
 (0)