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

parseConstantDeclaratorValue() protected method

Parses the value of a php constant. By default this can be only static values that were allowed in the oldest supported PHP version.
Since: 2.2.x
protected parseConstantDeclaratorValue ( ) : PDepend\Source\AST\ASTValue
return PDepend\Source\AST\ASTValue
    protected function parseConstantDeclaratorValue()
    {
        return $this->parseStaticValue();
    }
AbstractPHPParser