OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
monolog
/
monolog
/
src
/
Monolog
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
π
..
-
08/12/2024 10:34:19 AM
rwxr-xr-x
π
Attribute
-
08/12/2024 10:35:56 AM
rwxr-xr-x
π
DateTimeImmutable.php
1.25 KB
08/12/2024 10:34:19 AM
rw-r--r--
π
ErrorHandler.php
10.28 KB
08/12/2024 10:34:19 AM
rw-r--r--
π
Formatter
-
08/12/2024 10:35:56 AM
rwxr-xr-x
π
Handler
-
08/12/2024 10:36:32 AM
rwxr-xr-x
π
Level.php
5.56 KB
08/12/2024 10:34:19 AM
rw-r--r--
π
LogRecord.php
3.5 KB
08/12/2024 10:34:19 AM
rw-r--r--
π
Logger.php
23.21 KB
08/12/2024 10:34:19 AM
rw-r--r--
π
Processor
-
08/12/2024 10:35:58 AM
rwxr-xr-x
π
Registry.php
4.06 KB
08/12/2024 10:34:19 AM
rw-r--r--
π
ResettableInterface.php
1005 bytes
08/12/2024 10:34:19 AM
rw-r--r--
π
SignalHandler.php
3.92 KB
08/12/2024 10:34:19 AM
rw-r--r--
π
Test
-
08/12/2024 10:35:58 AM
rwxr-xr-x
π
Utils.php
9.44 KB
08/12/2024 10:34:19 AM
rw-r--r--
Editing: ResettableInterface.php
Close
<?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 { public function reset(): void; }