parseFile(); foreach ($a->bugs as $bug) { if ($bug['type'] == 'UNDEF_ACCESS') { list($line, $file) = $bug['line']; $this->fail($file, $line, "'{$bug['name']}'"); } elseif ($bug['type'] == 'MAYBE_UNDEF_ACCESS') { list($line, $file) = $bug['line']; $this->warn("Possible access to NULL object @ $file : $line"); } } if (!$a->bugs) $this->pass(); } } } return 'UnitializedVars'; ?>