Code Duplication    Length = 3-3 lines in 2 locations

src/LesserPhp/Parser.php 2 locations

@@ 555-557 (lines=3) @@
552
        $s = $this->seek();
553
554
        // speed shortcut
555
        if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] !== "(") {
556
            return false;
557
        }
558
559
        $inParens = $this->inParens;
560
        if ($this->literal("(") &&
@@ 1076-1078 (lines=3) @@
1073
    protected function tagBracket(&$parts, &$hasExpression)
1074
    {
1075
        // speed shortcut
1076
        if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] !== "[") {
1077
            return false;
1078
        }
1079
1080
        $s = $this->seek();
1081