You are here

EntityProcessor.php in Content Synchronizer 8

File

src/Annotation/EntityProcessor.php
View source
<?php

namespace Drupal\content_synchronizer\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Define an EntityProcessor annotation object.
 *
 * @Annotation
 *
 * @ingroup content_synchronizer
 */
class EntityProcessor extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The entity entityType.
   *
   * @var string
   */
  public $entityType;

}

Classes

Namesort descending Description
EntityProcessor Define an EntityProcessor annotation object.