From e797659fb5727df97d87b7c4d2eecb309cc83ad8 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 17 Jul 2014 12:19:44 +0200 Subject: [PATCH] fixed CS --- src/Symfony/Component/CssSelector/Node/Specificity.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/CssSelector/Node/Specificity.php b/src/Symfony/Component/CssSelector/Node/Specificity.php index 16cf9ad3d0..28ef25e6a6 100644 --- a/src/Symfony/Component/CssSelector/Node/Specificity.php +++ b/src/Symfony/Component/CssSelector/Node/Specificity.php @@ -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; }