ProviderPluginCollection.php in Synonyms 2.0.x
Namespace
Drupal\synonymsFile
src/ProviderPluginCollection.phpView source
<?php
namespace Drupal\synonyms;
use Drupal\Core\Plugin\DefaultSingleLazyPluginCollection;
/**
* Provides a collection of synonym provider plugins.
*/
class ProviderPluginCollection extends DefaultSingleLazyPluginCollection {
/**
* {@inheritdoc}
*
* @return \Drupal\synonyms\ProviderInterface\ProviderInterface
* The return value
*/
public function &get($instance_id) {
return parent::get($instance_id);
}
}
Classes
Name | Description |
---|---|
ProviderPluginCollection | Provides a collection of synonym provider plugins. |