In file D:\oblib-core\php\oblib\dataReflection\dataReflection.class.php between lines 285 and 301.
<?php
class dataReflectionHighlight extends dataPrimitive implements dataNameValuePair
{
function __construct ($strDocComment, $strSyntax)
{
parent::__construct ('Syntax');
$this->___setValue (
highlight_string (
"<?php\n \n" .
(!empty ($strDocComment) ? "\t" . $strDocComment . "\n\n" : "") .
$strSyntax . "\n?>",
TRUE
)
);
}
}
?>