turn off error reporting (it screws when run in Docker)

This commit is contained in:
Michael Becker 2025-07-25 19:49:50 -04:00
parent 8fdb156420
commit b44f6431e4

View File

@ -1,4 +1,6 @@
<?php <?php
error_reporting(E_ALL & ~E_DEPRECATED & ~E_NOTICE & ~E_WARNING);
// ============================================================================= // =============================================================================
// Phast bootstrapper - loads the application modules and executes Phast // Phast bootstrapper - loads the application modules and executes Phast
// Copyright (C) 2013-2014 Mike Becker // Copyright (C) 2013-2014 Mike Becker
@ -37,4 +39,4 @@
// *.phpx.php files as PHP code-behind files. We may decide to use the *.ctlx extension // *.phpx.php files as PHP code-behind files. We may decide to use the *.ctlx extension
// (and its associated *.ctlx.php) for PHPX controls. // (and its associated *.ctlx.php) for PHPX controls.
System::Launch(); System::Launch();
?> ?>