From 43d2e26d40e67fc1c7d0c902f44a8ddede456c5c Mon Sep 17 00:00:00 2001 From: Ivan Doroshenko <Matroskeen@3426249.no-reply.drupal.org> Date: Fri, 8 Apr 2022 13:20:55 +0000 Subject: [PATCH] Issue #3274246 by Matroskeen: Fix property types in EntityLookup --- src/Plugin/migrate/process/EntityLookup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugin/migrate/process/EntityLookup.php b/src/Plugin/migrate/process/EntityLookup.php index 62e96c4a..b2c8fd50 100644 --- a/src/Plugin/migrate/process/EntityLookup.php +++ b/src/Plugin/migrate/process/EntityLookup.php @@ -97,7 +97,7 @@ class EntityLookup extends ProcessPluginBase implements ContainerFactoryPluginIn protected ?string $destinationBundleKey = NULL; protected ?string $lookupValueKey = NULL; protected ?string $lookupBundleKey = NULL; - protected ?string $lookupBundle = NULL; + protected mixed $lookupBundle = NULL; protected ?string $lookupEntityType = NULL; protected ?string $destinationProperty; protected bool $accessCheck = TRUE; -- GitLab