phplinter\Lint\BaseLint::sec_includes PHP Метод

sec_includes() защищенный Метод

----------------------------------------------------------------------+ Search for security infractions in includes
protected sec_includes ( $pos )
    protected function sec_includes($pos)
    {
        $i = $pos;
        $o = $this->node->tokens;
        while (isset($o[++$i]) && $o[$i][0] !== T_SEMICOLON) {
            if (in_array($o[$i][1], $this->uvars)) {
                $this->report('SEC_ERROR_INCLUDE', $o[$pos][1], $o[$pos][2]);
            }
        }
    }