19 lines
359 B
PHP
19 lines
359 B
PHP
<?php
|
|
|
|
namespace Drupal\Component\Plugin;
|
|
|
|
/**
|
|
* Provides an interface for objects that depend on a plugin.
|
|
*/
|
|
interface PluginAwareInterface {
|
|
|
|
/**
|
|
* Sets the plugin for this object.
|
|
*
|
|
* @param \Drupal\Component\Plugin\PluginInspectionInterface $plugin
|
|
* The plugin.
|
|
*/
|
|
public function setPlugin(PluginInspectionInterface $plugin);
|
|
|
|
}
|