CakePHP4 : DebugKit を無効化

バージョン

CakePHP : 4.1.5

DebugKit を無効化

app/src/Application.phpbootstrap() 内の $this->addPlugin('DebugKit');コメントアウト

    public function bootstrap(): void
    {
        //

        if (Configure::read('debug')) {
            $this->addPlugin('DebugKit'); //この行をコメントアウト
        }

        //
    }