mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
21 lines
365 B
PHP
21 lines
365 B
PHP
<?php
|
|
/**
|
|
* Whoops exception handler
|
|
*
|
|
* @package MyAAC
|
|
* @author Slawkens <slawkens@gmail.com>
|
|
* @copyright 2023 MyAAC
|
|
* @link https://my-aac.org
|
|
*/
|
|
|
|
$whoops = new \Whoops\Run;
|
|
|
|
if(IS_CLI) {
|
|
$whoops->pushHandler(new \Whoops\Handler\PlainTextHandler);
|
|
}
|
|
else {
|
|
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler);
|
|
}
|
|
|
|
$whoops->register();
|