Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / symfony / validator / Constraints / Ip.php
index 36772c62aa52ba933e5914db670c42a09c40c29e..f45c4cacebca01fa815df1d1f5a625ba69ddf400 100644 (file)
@@ -79,7 +79,7 @@ class Ip extends Constraint
     {
         parent::__construct($options);
 
-        if (!in_array($this->version, self::$versions)) {
+        if (!\in_array($this->version, self::$versions)) {
             throw new ConstraintDefinitionException(sprintf('The option "version" must be one of "%s"', implode('", "', self::$versions)));
         }
     }