config: allow the DocComment to start with star
git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3953 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
@@ -293,7 +293,7 @@ class config
|
|||||||
if (is_array ($token))
|
if (is_array ($token))
|
||||||
{
|
{
|
||||||
list ($id, $text) = $token;
|
list ($id, $text) = $token;
|
||||||
if ($debug) echo "ARRAY : $id, $text\n";
|
if ($debug) echo "ARRAY : $id (".token_name ($id)."), $text\n";
|
||||||
if ($foundDefault === "" && $text === "->")
|
if ($foundDefault === "" && $text === "->")
|
||||||
$foundDefault = $text;
|
$foundDefault = $text;
|
||||||
if ($id === T_DOC_COMMENT)
|
if ($id === T_DOC_COMMENT)
|
||||||
@@ -302,7 +302,7 @@ class config
|
|||||||
if ($debug) echo "DOC_COMMENT : $text\n";
|
if ($debug) echo "DOC_COMMENT : $text\n";
|
||||||
// Append the not completed lines
|
// Append the not completed lines
|
||||||
$text = trim (substr ($text, 3, -2));
|
$text = trim (substr ($text, 3, -2));
|
||||||
$text = preg_replace ("/\n\s+/", " ", $text);
|
$text = preg_replace ("/\n\s+\*?/", " ", $text);
|
||||||
$text = preg_replace (
|
$text = preg_replace (
|
||||||
"/(@(param|description|type|values|default|group|prefix))/",
|
"/(@(param|description|type|values|default|group|prefix))/",
|
||||||
"\n\${1}", $text);
|
"\n\${1}", $text);
|
||||||
|
|||||||
Reference in New Issue
Block a user