From 8f1eacdab702d94f569e1cfc00bb67543768e03a Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Fri, 13 Feb 2015 15:04:00 +0100 Subject: [PATCH] Increase recommended xdebug.max_nesting_level Looks like 2000 is not quite enough for some cases... --- bin/php-parse.php | 2 +- doc/2_Usage_of_basic_components.markdown | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/php-parse.php b/bin/php-parse.php index 193ecec..063d3e0 100644 --- a/bin/php-parse.php +++ b/bin/php-parse.php @@ -2,7 +2,7 @@ require __DIR__ . '/../lib/bootstrap.php'; -ini_set('xdebug.max_nesting_level', 2000); +ini_set('xdebug.max_nesting_level', 3000); // Disable XDebug var_dump() output truncation ini_set('xdebug.var_display_max_children', -1); diff --git a/doc/2_Usage_of_basic_components.markdown b/doc/2_Usage_of_basic_components.markdown index e9db1d6..fd01e57 100644 --- a/doc/2_Usage_of_basic_components.markdown +++ b/doc/2_Usage_of_basic_components.markdown @@ -20,7 +20,7 @@ Additionally you may want to set the `xdebug.max_nesting_level` ini option to a ```php