Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php

namespace DebugLogConfigTool\Classes;

class FatalErrorSnapshot
{
    const OPTION_KEY = 'dlct_last_fatal_error_snapshot';

    public function boot()
    {
        register_shutdown_function([$this, 'capture']);
    }

    public function capture()
    {
        $error = error_get_last();

        if (!$error || empty($error['type']) || !$this->isFatalType((int) $error['type'])) {
            return;
        }

        update_option(self::OPTION_KEY, [
            'type' => (int) $error['type'],
            'message' => isset($error['message']) ? wp_strip_all_tags((string) $error['message']) : '',
            'file' => isset($error['file']) ? wp_normalize_path((string) $error['file']) : '',
            'line' => isset($error['line']) ? (int) $error['line'] : 0,
            'captured_at'