Skip to content

Commit

Permalink
fixed CS
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jul 17, 2014
1 parent 4d29ae5 commit 8281af7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Node/Specificity.php
Expand Up @@ -88,11 +88,11 @@ public function compare(Specificity $specificity)
if ($this->a !== $specificity->a) {
return $this->a > $specificity->a ? 1 : -1;
}

if ($this->b !== $specificity->b) {
return $this->b > $specificity->b ? 1 : -1;
}

if ($this->c !== $specificity->c) {
return $this->c > $specificity->c ? 1 : -1;
}
Expand Down

0 comments on commit 8281af7

Please sign in to comment.