Code Duplication    Length = 3-3 lines in 2 locations

src/tokens/LessRuleList.php 2 locations

@@ 169-171 (lines=3) @@
166
            return $indentation . "\t" . implode(",", $token->Selectors) . " {";
167
        } elseif ($token instanceof \CssAtKeyframesRulesetEndToken) {
168
            return $indentation . "\t" . "}";
169
        } elseif ($token instanceof \CssAtKeyframesRulesetDeclarationToken) {
170
            return $indentation . "\t\t" . $token->Property . ": " . $token->Value . ($token->IsImportant ? " !important" : "") . ($token->IsLast ? "" : ";");
171
        } elseif ($token instanceof \CssAtCharsetToken) {
172
            return $indentation . "@charset " . $token->Charset . ";";
173
        } elseif ($token instanceof \CssAtFontFaceStartToken) {
174
            return "@font-face {";
@@ 175-177 (lines=3) @@
172
            return $indentation . "@charset " . $token->Charset . ";";
173
        } elseif ($token instanceof \CssAtFontFaceStartToken) {
174
            return "@font-face {";
175
        } elseif ($token instanceof \CssAtFontFaceDeclarationToken) {
176
            return $indentation . "\t" . $token->Property . ": " . $token->Value . ($token->IsImportant ? " !important" : "") . ($token->IsLast ? "" : ";");
177
        } else {
178
            return $indentation . $token;
179
        }
180
    }