By xano on
Change record status:
Draft (View all draft change records)
Project:
Introduced in branch:
8.0.x
Issue links:
Description:
\Drupal\Core\Plugin\Mapper\PluginManagerInterface no longer extends Drupal\Component\Plugin\Mapper\MapperInterface. This means plugin managers no longer have to implement MapperInterface::getInstance(). In addition, \Drupal\Component\Plugin\PluginManagerBase and therefore \Drupal\Core\Plugin\DefaultPluginManager no longer implement MapperInterface.
Before:
interface PluginManagerInterface extends DiscoveryInterface, FactoryInterface, MapperInterface {
}
After:
interface PluginManagerInterface extends DiscoveryInterface, FactoryInterface {
}
Impacts:
Module developers