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

parseOptionalByReference() private method

Parses an optional by reference token. The return value will be true when a reference token was found, otherwise this method will return false.
Since: 0.9.8
    private function parseOptionalByReference()
    {
        if ($this->isNextTokenByReference()) {
            return $this->parseByReference();
        }
        return false;
    }
AbstractPHPParser