feeds-8.x-3.0-alpha1/src/Plugin/Type/Processor/EntityProcessorInterface.php
src/Plugin/Type/Processor/EntityProcessorInterface.php
<?php
namespace Drupal\feeds\Plugin\Type\Processor;
use Drupal\feeds\Plugin\Type\CleanableInterface;
use Drupal\feeds\Plugin\Type\ClearableInterface;
use Drupal\feeds\Plugin\Type\LockableInterface;
/**
* Interface for Feeds entity processor plugins.
*/
interface EntityProcessorInterface extends ProcessorInterface, ClearableInterface, CleanableInterface, LockableInterface {
}
