Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / symfony / serializer / Mapping / Loader / YamlFileLoader.php
index ca9d43e15b7939ba3e87c268272a9734b87c473b..886da0d1b509f2d88a74f945dc31305d5c1fbda5 100644 (file)
@@ -77,7 +77,7 @@ class YamlFileLoader extends FileLoader
                 }
 
                 if (isset($data['max_depth'])) {
-                    if (!is_int($data['max_depth'])) {
+                    if (!\is_int($data['max_depth'])) {
                         throw new MappingException(sprintf('The "max_depth" value must be an integer in "%s" for the attribute "%s" of the class "%s".', $this->file, $attribute, $classMetadata->getName()));
                     }