触った覚えのない箇所でエラーが出ました。

下記のように、bootstrap.phpの66行目でエラーが出ました。

何が原因なのでしょうか。

お手数おかけしますが、ご回答頂けると幸いです。

宜しくお願いします。
画像の説明をここに入力

エラーログ

Fatal error: Uncaught Error: Call to undefined method Error::shutdown_handler() in /Users/tanakaakio/Desktop/fuelphp/fuel/core/bootstrap.php:66 Stack trace: #0 [internal function]: {closure}() #1 {main} thrown in /Users/■■■■/Desktop/fuelphp/fuel/core/bootstrap.php on line 66
        致命的なエラー:未知のエラー:/Users/■■■■/Desktop/fuelphp/fuel/core/bootstrap.php:66で未定義のメソッドError :: shutdown_handler()を呼び出すスタックトレース:#0 [internal function]:{closure}() #1 {main}は/Users/■■■■/Desktop/fuelphp/fuel/core/bootstrap.php on line 66でスローされました

下記bootstrap.php

        \Cli::error("Error: ".$e->getMessage()." in ".$e->getFile()." on ".$e->getLine());
            \Cli::beep();
            exit(1);
        }
    }
    return \Error::shutdown_handler();  ←ここ
});

set_exception_handler(function (\Exception $e)
{
    // reset the autoloader
    \Autoloader::_reset();

    // deal with PHP bugs #42098/#54054
    if ( ! class_exists('Error'))
    {
        include COREPATH.'classes/error.php';
        class_alias('\Fuel\Core\Error', 'Error');
        class_alias('\Fuel\Core\PhpErrorException', 'PhpErrorException');
    }

82行目も

Fatal error: Uncaught Error: Call to undefined method Error::exception_handler() in /Users/■■■■/Desktop/fuelphp/fuel/core/bootstrap.php:82 Stack trace: #0 [internal function]: {closure}(Object(ReflectionException)) #1 {main} thrown in /Users/■■■■/Desktop/fuelphp/fuel/core/bootstrap.php on line 82