You are here

PluginAwareInterface.php in Feeds 8.3

File

src/Plugin/PluginAwareInterface.php
View source
<?php

namespace Drupal\feeds\Plugin;

use Drupal\feeds\Plugin\Type\FeedsPluginInterface;

/**
 * Interface for objects that are aware of a plugin.
 */
interface PluginAwareInterface {

  /**
   * Sets the plugin for this object.
   *
   * @param \Drupal\Component\Plugin\FeedsPluginInterface $plugin
   *   The plugin.
   */
  public function setPlugin(FeedsPluginInterface $plugin);

}

Interfaces

Namesort descending Description
PluginAwareInterface Interface for objects that are aware of a plugin.