diff --git a/core/modules/migrate/src/Plugin/migrate/process/SkipOnEmpty.php b/core/modules/migrate/src/Plugin/migrate/process/SkipOnEmpty.php index 6869539..45626be 100644 --- a/core/modules/migrate/src/Plugin/migrate/process/SkipOnEmpty.php +++ b/core/modules/migrate/src/Plugin/migrate/process/SkipOnEmpty.php @@ -17,12 +17,10 @@ * method) is skipped and will not be migrated. * * Available configuration keys: - * - method: (optional) level of skip. - * - row: Skips the entire row when an empty value is encountered. Useful - * when combined with a migration process plugin to check if a related - * item was previously migrated. - * - process: Skips the processing of the property when an empty value is - * encountered. + * - method: (optional) What to do if the input value is empty. Possible values: + * - row: Skips the entire row when an empty value is encountered. + * - process: Prevents further processing of the input property when the value + * is empty. * * Examples: *