0
代码介绍
代码
Issues
Pull Requests
流水线
Actions
讨论
Wiki
项目成员
分析
项目设置
0
  1. PocketMine-MP
  2. /
  3. src
  4. /
  5. crash
DDylan K. TaylorDeal with a whole lot of PHPStan suppressed key casting errors
5325ecee创建于 2024年11月25日历史提交
文件最后提交记录最后更新时间
CrashDump.php
Ignore non-fatal error types in crash handlers ErrorToExceptionHandler currently prevents these from appearing by turning them into exceptions, but this won't always be the case. For example, in the future we may not want to turn ALL types of E_* errors into exceptions (e.g. E_DEPRECATED). 2 年前
CrashDumpData.php
Deal with a whole lot of PHPStan suppressed key casting errors closes #6534 1 年前
CrashDumpDataGeneral.php
Use PHP-CS-Fixer to enforce file header presence 3 年前
CrashDumpDataPluginEntry.php
Use PHP-CS-Fixer to enforce file header presence 3 年前
CrashDumpRenderer.php
Allow thread errors and their traces to be properly recorded in crashdumps (#5910) until now, any thread crash would show as a generic crash since we aren't able to get the trace from the crashed thread directly. This uses some dirty tricks to export a partially serialized stack trace to the main thread, where it can be written into a crashdump. This enables us to see proper crash information for async tasks in the crash archive (finally!!!) as well as being able to capture RakLib errors properly.2 年前