diff vendor/symfony/css-selector/Parser/Token.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 1fec387a4317
children
line wrap: on
line diff
--- a/vendor/symfony/css-selector/Parser/Token.php	Tue Jul 10 15:07:59 2018 +0100
+++ b/vendor/symfony/css-selector/Parser/Token.php	Thu Feb 28 13:21:36 2019 +0000
@@ -82,7 +82,7 @@
     /**
      * @return bool
      */
-    public function isDelimiter(array $values = array())
+    public function isDelimiter(array $values = [])
     {
         if (self::TYPE_DELIMITER !== $this->type) {
             return false;
@@ -92,7 +92,7 @@
             return true;
         }
 
-        return in_array($this->value, $values);
+        return \in_array($this->value, $values);
     }
 
     /**