Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / field / src / Plugin / migrate / process / ProcessField.php
index e96db6802582cf440ccb37c352d722995d5aa581..c68acc9272de66f768ef6a525f397d362d6e4f0c 100644 (file)
@@ -147,7 +147,7 @@ class ProcessField extends ProcessPluginBase implements ContainerFactoryPluginIn
     $plugin_id = $field_plugin_manager->getPluginIdFromFieldType($field_type, [], $this->migration);
     $plugin_instance = $field_plugin_manager->createInstance($plugin_id, [], $this->migration);
     if (!is_callable([$plugin_instance, $method])) {
-      throw new MigrateException('The specified method does not exists or is not callable.');
+      throw new MigrateException('The specified method does not exist or is not callable.');
     }
     return call_user_func_array([$plugin_instance, $method], [$row]);
   }