Select Git revision
PluginAwareInterface.php

#2773197 by jalpesh, tstoeckler:...
Angie Byron authored
Issue #2773197 by jalpesh, tstoeckler: DefaultHtmlRouteProviderTest::testGetCollectionRoute() has wrong @covers
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
PluginAwareInterface.php 359 B
<?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);
}