Code Duplication    Length = 3-3 lines in 2 locations

src/LesserPhp/Parser.php 2 locations

@@ 589-591 (lines=3) @@
586
        $s = $this->seek();
587
588
        // speed shortcut
589
        if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] !== "(") {
590
            return false;
591
        }
592
593
        $inParens = $this->inParens;
594
        if ($this->literal("(") &&
@@ 1108-1110 (lines=3) @@
1105
    protected function tagBracket(&$parts, &$hasExpression)
1106
    {
1107
        // speed shortcut
1108
        if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] !== "[") {
1109
            return false;
1110
        }
1111
1112
        $s = $this->seek();
1113