Skip to content

Commit 090e550

Browse files
committed
Now parses the whole codebase without throwing any errors :)
1 parent e945def commit 090e550

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

docgen/src/Parameter.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,12 @@ public function __construct($processor, $line)
2626
{
2727
preg_match("/(@param)\s(\S*)\s{(\S*)}\s?(.*)?/", $line, $output);
2828

29-
// $this->processor->log("parsePixi parameter");
30-
$this->parsePixi($output);
29+
$this->processor->log("parsePixi parameter - " . count($output));
30+
31+
if (count($output) > 0)
32+
{
33+
$this->parsePixi($output);
34+
}
3135
}
3236

3337
}

0 commit comments

Comments
 (0)