| Name | Size | Mode | Actions |
|---|---|---|---|
| Exception/ | - | 0775 | rm |
| FatalErrorHandler/ | - | 0775 | rm |
| Resources/ | - | 0775 | rm |
| Tests/ | - | 0775 | rm |
| .gitignore | 34 | 0664 | editdlrm |
| BufferingLogger.php | 732 | 0664 | editdlrm |
| CHANGELOG.md | 1345 | 0664 | editdlrm |
| composer.json | 967 | 0664 | editdlrm |
| Debug.php | 1763 | 0664 | editdlrm |
| DebugClassLoader.php | 16320 | 0664 | editdlrm |
| ErrorHandler.php | 29628 | 0664 | editdlrm |
| ExceptionHandler.php | 33662 | 0664 | editdlrm |
| LICENSE | 1065 | 0664 | editdlrm |
| phpunit.xml.dist | 988 | 0664 | editdlrm |
| README.md | 482 | 0664 | editdlrm |
/var/www/vhosts/nabawater/vendor/symfony/debug/BufferingLogger.php (732B)
*/ class BufferingLogger extends AbstractLogger { private $logs = []; public function log($level, $message, array $context = []) { $this->logs[] = [$level, $message, $context]; } public function cleanLogs() { $logs = $this->logs; $this->logs = []; return $logs; } }