diff --git a/src/Php/Translator.php b/src/Php/Translator.php index bc71313e..aeec5a92 100644 --- a/src/Php/Translator.php +++ b/src/Php/Translator.php @@ -457,7 +457,7 @@ CODE; $fullName = $functionDef->getNamespacedName(); $zifName = $this->escapeZendFnName($fullName); if ($functionDef->namespace) { - $code .= $this->getIndent() . 'ZEND_NAMED_FE("' . $this->escapeString($fullName) . '", ZEND_FN(' . $zifName . '), arginfo_getIndent() . 'ZEND_NAMED_FE("' . $this->escapeString($fullName) . '", ZEND_FN(' . $zifName . '), arginfo_' . $zifName . ')' . PHP_EOL; } else { $code .= $this->getIndent() . 'ZEND_FE(' . $zifName . ', arginfo_' . $zifName . ')' . PHP_EOL; }