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)); } }