10000 fixed CS · symfony/symfony@e797659 · GitHub
[go: up one dir, main page]

Skip to content

Commit e797659

Browse files
committed
fixed CS
1 parent b8f212d commit e797659

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/CssSelector/Node/Specificity.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ public function compare(Specificity $specificity)
8888
if ($this->a !== $specificity->a) {
8989
return $this->a > $specificity->a ? 1 : -1;
9090
}
91-
91+
9292
if ($this->b !== $specificity->b) {
9393
return $this->b > $specificity->b ? 1 : -1;
9494
}
95-
95+
9696
if ($this->c !== $specificity->c) {
9797
return $this->c > $specificity->c ? 1 : -1;
9898
}

0 commit comments

Comments
 (0)
0