[ticket/17176] Fix mix of psalm / DebugHandler

PHPBB3-17176
This commit is contained in:
Marc Alexander 2023-09-21 13:21:05 +02:00
parent 5231e04d49
commit 43772c0608
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

@ -14,6 +14,7 @@
namespace phpbb\debug;
use Symfony\Component\ErrorHandler\BufferingLogger;
use Symfony\Component\ErrorHandler\Debug as DebugHandler;
use Symfony\Component\ErrorHandler\ErrorHandler;
/**
@ -74,6 +75,6 @@ class debug
error_handler::register()->throwAt(0, true);
}
Debug::enable();
DebugHandler::enable();
}
}