1
0
Fork 0
mirror of synced 2024-07-01 20:50:49 +12:00
appwrite/public/index.php
2020-06-30 00:43:34 +03:00

20 lines
515 B
PHP

<?php
/**
* “Programming today is a race between software engineers striving to build bigger and better idiot-proof programs,
* and the Universe trying to produce bigger and better idiots.
* So far, the Universe is winning.”
*
* ― Rick Cook, The Wizardry Compiled
*/
error_reporting(0);
ini_set('display_errors', 0);
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
trigger_error('hide errors in prod', E_USER_NOTICE);
include __DIR__ . '/../app/app.php';