Code Duplication    Length = 9-9 lines in 2 locations

src/LesserPhp/Parser.php 2 locations

@@ 206-214 (lines=9) @@
203
        }
204
205
        // setting a property
206
        if ($this->keyword($key) && $this->assign() &&
207
            $this->propertyValue($value, $key) && $this->end()
208
        ) {
209
            $this->append(['assign', $key, $value], $s);
210
211
            return true;
212
        } else {
213
            $this->seek($s);
214
        }
215
216
217
        // look for special css blocks
@@ 310-318 (lines=9) @@
307
308
309
        // setting a variable
310
        if ($this->variable($var) && $this->assign() &&
311
            $this->propertyValue($value) && $this->end()
312
        ) {
313
            $this->append(['assign', $var, $value], $s);
314
315
            return true;
316
        } else {
317
            $this->seek($s);
318
        }
319
320
        if ($this->import($importValue)) {
321
            $this->append($importValue, $s);