You are here

SynonymProviderPluginCollection.php in Synonyms 8

Namespace

Drupal\synonyms

File

src/SynonymProviderPluginCollection.php
View source
<?php

namespace Drupal\synonyms;

use Drupal\Core\Plugin\DefaultSingleLazyPluginCollection;

/**
 * Provides a collection of synonym provider plugins.
 */
class SynonymProviderPluginCollection extends DefaultSingleLazyPluginCollection {

  /**
   * {@inheritdoc}
   *
   * @return \Drupal\synonyms\SynonymsProviderInterface\SynonymsProviderInterface
   *   The return value
   */
  public function &get($instance_id) {
    return parent::get($instance_id);
  }

}

Classes

Namesort descending Description
SynonymProviderPluginCollection Provides a collection of synonym provider plugins.