Sindbad~EG File Manager

Current Path : /home/escuelai/public_html/dopp/setup/test/tests/
Upload File :
Current File : /home/escuelai/public_html/dopp/setup/test/tests/test.unitialized.php

<?php
require_once "class.test.php";
require_once "class.php_analyze.php";

class UnitializedVars extends Test {
    var $name = "Access to unitialized variables";

    function testUnitializedUsage() {
        $scripts = $this->getAllScripts();
        $matches = array();
        foreach ($scripts as $s) {
            $a = new SourceAnalyzer($s);
            $a->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';
?>

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists