mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-19 23:07:57 -05:00
- Bump composer.json/lock to codeigniter 4.4.3 - Fix base_url() call without arguments - Updated files in the project space - Bump composer.json/lock to kint 5.0.4 - Update composer.json to include missing CI elements - Corrected composer.json regarding minimum versions - Updated README.md to reflect CI4 implementation - Migrated some Routes.php to Routing.php - Removed deprecated settings from Config/App.php
24 lines
913 B
PHP
24 lines
913 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| ERROR DISPLAY
|
|
|--------------------------------------------------------------------------
|
|
| Don't show ANY in production environments. Instead, let the system catch
|
|
| it and display a generic error message.
|
|
|
|
|
| If you set 'display_errors' to '1', CI4's detailed error report will show.
|
|
*/
|
|
ini_set('display_errors', '0');
|
|
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED);
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| DEBUG MODE
|
|
|--------------------------------------------------------------------------
|
|
| Debug mode is an experimental flag that can allow changes throughout
|
|
| the system. It's not widely used currently, and may not survive
|
|
| release of the framework.
|
|
*/
|
|
defined('CI_DEBUG') || define('CI_DEBUG', false);
|