Code Duplication    Length = 9-9 lines in 2 locations

src/Tokenizers/CSS.php 2 locations

@@ 293-301 (lines=9) @@
290
                // opening curly bracket could be indeed the start of a style
291
                // definition.
292
                if ($asperandStart === true) {
293
                    if (PHP_CodeSniffer_VERBOSITY > 1) {
294
                        if ($inStyleDef === true) {
295
                            echo "\t\t* style definition closed *".PHP_EOL;
296
                        }
297
298
                        if ($asperandStart === true) {
299
                            echo "\t\t* at-rule definition closed *".PHP_EOL;
300
                        }
301
                    }
302
303
                    $inStyleDef    = false;
304
                    $asperandStart = false;
@@ 313-321 (lines=9) @@
310
                }
311
                break;
312
            case T_CLOSE_CURLY_BRACKET:
313
                if (PHP_CodeSniffer_VERBOSITY > 1) {
314
                    if ($inStyleDef === true) {
315
                        echo "\t\t* style definition closed *".PHP_EOL;
316
                    }
317
318
                    if ($asperandStart === true) {
319
                        echo "\t\t* at-rule definition closed *".PHP_EOL;
320
                    }
321
                }
322
323
                $inStyleDef    = false;
324
                $asperandStart = false;