Exakat\Analyzer\Security\DontEchoError::analyze PHP Метод

analyze() публичный Метод

public analyze ( )
    public function analyze()
    {
        // echo mysql_error();
        $errorMessageFunctions = $this->loadIni('errorMessageFunctions.ini', 'functions');
        $this->atomFunctionIs(array('echo', 'print', 'die', 'exit'))->outIs('ARGUMENTS')->atomInside('Functioncall')->fullnspathIs($errorMessageFunctions)->back('first');
        $this->prepareQuery();
        // echo 'error '.pg_error();
        $this->atomFunctionIs(array('echo', 'print', 'die', 'exit'))->outIs('ARGUMENTS')->outIs('ARGUMENT')->atomIs('Concatenation')->outIs('CONCAT')->atomIs('Functioncall')->fullnspathIs($errorMessageFunctions)->back('first');
        $this->prepareQuery();
    }
DontEchoError