Skip to content

Commit

Permalink
Quiets a php notice
Browse files Browse the repository at this point in the history
  • Loading branch information
bseeger committed Oct 14, 2021
1 parent 44c3252 commit 5672577
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Plugin/migrate/process/ParseEntityLookup.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public function transform($value, MigrateExecutableInterface $migrate_executable
return NULL;
}

$delimiter = $this->configuration['delimiter'] ?: self::default_delimiter;
$delimiter = @$this->configuration['delimiter'] ?: self::default_delimiter;

// split the source value into fields using the defined delimiter
$source_values = explode($delimiter, $value);
Expand Down Expand Up @@ -238,4 +238,4 @@ function applyDefaults($entity_lookup_config, $defaults): array {
}


}
}

0 comments on commit 5672577

Please sign in to comment.