diff modules/contrib/migrate_plus/src/Plugin/migrate/process/SkipOnValue.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents a9cd425dd02b
children
line wrap: on
line diff
--- a/modules/contrib/migrate_plus/src/Plugin/migrate/process/SkipOnValue.php	Thu Feb 28 13:11:55 2019 +0000
+++ b/modules/contrib/migrate_plus/src/Plugin/migrate/process/SkipOnValue.php	Thu May 09 15:34:47 2019 +0100
@@ -25,6 +25,8 @@
  *   - row: Skips the entire row.
  *   - process: Prevents further processing of the input property
  *
+ * @codingStandardsIgnoreStart
+ *
  * Examples:
  *
  * Example usage with minimal configuration:
@@ -35,7 +37,6 @@
  *     method: process
  *     value: blog
  * @endcode
- *
  * The above example will skip further processing of the input property if
  * the content_type source field equals "blog".
  *
@@ -50,9 +51,10 @@
  *       - article
  *       - testimonial
  * @endcode
- *
  * The above example will skip processing any row for which the source row's
  * content type field is not "article" or "testimonial".
+ *
+ * @codingStandardsIgnoreEnd
  */
 class SkipOnValue extends ProcessPluginBase {