From 8190abc434af71b362a91e02a49d9dc295d158a4 Mon Sep 17 00:00:00 2001 From: lacatoire Date: Sun, 7 Jun 2026 18:34:50 +0200 Subject: [PATCH] [Sync EN] reflection: ReflectionFunction::__construct() example var_export bool param --- reference/reflection/reflectionfunction/construct.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/reflection/reflectionfunction/construct.xml b/reference/reflection/reflectionfunction/construct.xml index 73e4d4c64..faece29b1 100644 --- a/reference/reflection/reflectionfunction/construct.xml +++ b/reference/reflection/reflectionfunction/construct.xml @@ -1,5 +1,5 @@ - + @@ -89,12 +89,12 @@ function dumpReflectionFunction($func) ); // Muestra los comentarios de documentación - printf("---> Documentación:\n %s\n", var_export($func->getDocComment(), 1)); + printf("---> Documentación:\n %s\n", var_export($func->getDocComment(), true)); // Muestra las variables estáticas existentes if ($statics = $func->getStaticVariables()) { - printf("---> Variables estáticas: %s\n", var_export($statics, 1)); + printf("---> Variables estáticas: %s\n", var_export($statics, true)); } }