PDepend\Source\Language\PHP\AbstractPHPParser::parseArrayType PHP Method

parseArrayType() protected method

protected parseArrayType ( ) : PDepend\Source\AST\ASTTypeArray
return PDepend\Source\AST\ASTTypeArray
    protected function parseArrayType()
    {
        $token = $this->consumeToken(Tokens::T_ARRAY);
        $type = $this->builder->buildAstTypeArray();
        $type->configureLinesAndColumns($token->startLine, $token->endLine, $token->startColumn, $token->endColumn);
        return $type;
    }
AbstractPHPParser