Now parses the whole codebase without throwing any errors :)

This commit is contained in:
photonstorm 2014-09-18 17:02:51 +01:00
parent e945defb86
commit 090e550964

View file

@ -26,8 +26,12 @@
{
preg_match("/(@param)\s(\S*)\s{(\S*)}\s?(.*)?/", $line, $output);
// $this->processor->log("parsePixi parameter");
$this->parsePixi($output);
$this->processor->log("parsePixi parameter - " . count($output));
if (count($output) > 0)
{
$this->parsePixi($output);
}
}
}