X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=vendor%2Fsymfony%2Fcss-selector%2FNode%2FSpecificity.php;h=6aa70d781cae2582cdb1f6a93eae030a44780371;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hp=d09eaca77ef456a2f96139980bae59233b9199d9;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/vendor/symfony/css-selector/Node/Specificity.php b/vendor/symfony/css-selector/Node/Specificity.php index d09eaca77..6aa70d781 100644 --- a/vendor/symfony/css-selector/Node/Specificity.php +++ b/vendor/symfony/css-selector/Node/Specificity.php @@ -29,24 +29,11 @@ class Specificity const B_FACTOR = 10; const C_FACTOR = 1; - /** - * @var int - */ private $a; - - /** - * @var int - */ private $b; - - /** - * @var int - */ private $c; /** - * Constructor. - * * @param int $a * @param int $b * @param int $c @@ -59,8 +46,6 @@ class Specificity } /** - * @param Specificity $specificity - * * @return self */ public function plus(Specificity $specificity) @@ -82,8 +67,6 @@ class Specificity * Returns -1 if the object specificity is lower than the argument, * 0 if they are equal, and 1 if the argument is lower. * - * @param Specificity $specificity - * * @return int */ public function compareTo(Specificity $specificity)