Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / css-selector / Node / Specificity.php
index d09eaca77ef456a2f96139980bae59233b9199d9..6aa70d781cae2582cdb1f6a93eae030a44780371 100644 (file)
@@ -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)