Remove E_STRICT from error reporting, it is deprecated

This commit is contained in:
Clemens Schwaighofer
2024-12-13 18:45:27 +09:00
parent 3bd21c75d8
commit 711b3bfe97
54 changed files with 54 additions and 54 deletions

View File

@@ -6,7 +6,7 @@
declare(strict_types=1);
error_reporting(E_ALL | E_STRICT | E_ERROR | E_WARNING | E_PARSE | E_COMPILE_ERROR);
error_reporting(E_ALL | E_ERROR | E_WARNING | E_PARSE | E_COMPILE_ERROR);
ob_start();