Fixes issue where XDebug aborts the thread for maximum function count.
This commit is contained in:
parent
a9eecfecd5
commit
b45730e1d9
|
|
@ -72,6 +72,13 @@ if (!isset($unitTesting) || !$unitTesting) {
|
||||||
header('Pragma: no-cache');
|
header('Pragma: no-cache');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Fix for XDebug aborting threads > 100 nested
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
ini_set('xdebug.max_nesting_level', 300);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Return The Application
|
| Return The Application
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue