| Name | Size | Mode | Actions |
|---|---|---|---|
| Exception/ | - | 0755 | rm |
| FatalErrorHandler/ | - | 0755 | rm |
| BufferingLogger.php | 1060 | 0644 | editdlrm |
| CHANGELOG.md | 1869 | 0644 | editdlrm |
| composer.json | 885 | 0644 | editdlrm |
| Debug.php | 2004 | 0644 | editdlrm |
| DebugClassLoader.php | 21131 | 0644 | editdlrm |
| ErrorHandler.php | 26920 | 0644 | editdlrm |
| ExceptionHandler.php | 28833 | 0644 | editdlrm |
| LICENSE | 1065 | 0644 | editdlrm |
| README.md | 736 | 0644 | editdlrm |
/home/techb158/exp.abdallabala.com/vendor/symfony/debug/BufferingLogger.php (1060B)
* * @deprecated since Symfony 4.4, use Symfony\Component\ErrorHandler\BufferingLogger instead. */ class BufferingLogger extends AbstractLogger { private $logs = []; /** * @return void */ public function log($level, $message, array $context = []) { $this->logs[] = [$level, $message, $context]; } public function cleanLogs() { $logs = $this->logs; $this->logs = []; return $logs; } }