This commit is contained in:
Fabien Potencier 2014-07-17 12:19:44 +02:00
parent b8f212d05b
commit e797659fb5

View File

@ -88,11 +88,11 @@ class 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;
}