- Issue created by @lykyd
The following code :
throw new MigrateSkipProcessException($e->getMessage());
Can produce the warning :
User deprecated function: Drupal\migrate\MigrateSkipProcessException is deprecated in drupal:10.3.0 and is removed from drupal:12.0.0. Return TRUE from a process plugin's isPipelineStopped() method to halt further processing on a pipeline. See in Drupal\migrate\MigrateSkipProcessException->__construct() (line 16 of /.../core/modules/migrate/src/MigrateSkipProcessException.php)
Replace :
throw new MigrateSkipProcessException("The transformation-only filter $plugin_id was skipped.");
By :
$this->stopPipeline();
return NULL;