mirror of
https://github.com/e107inc/e107.git
synced 2025-10-10 12:34:49 +02:00
15 lines
242 B
PHP
15 lines
242 B
PHP
<?php
|
|
|
|
/*
|
|
$_E107 = array();
|
|
$_E107['cli'] = true;
|
|
$_E107['phpunit'] = true;
|
|
$_E107['debug'] = true;
|
|
register_shutdown_function(function()
|
|
{
|
|
$e = new \Exception;
|
|
var_dump($e->getTraceAsString());
|
|
});
|
|
require_once(APP_PATH."/class2.php");
|
|
*/
|