Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / ProviderManager.php
index 41a259d114d84b7b54d237cf6a2ec84f9b12ebe1..40460ffcdc0dc3af942f01e8cab7e0ba7f6d0e95 100644 (file)
@@ -1,12 +1,7 @@
 <?php
-/**
- * @file
- * Contains \Drupal\bootstrap\Plugin\ProviderManager.
- */
 
 namespace Drupal\bootstrap\Plugin;
 
-use Drupal\bootstrap\Plugin\Provider\ProviderInterface;
 use Drupal\bootstrap\Theme;
 
 /**
@@ -38,7 +33,7 @@ class ProviderManager extends PluginManager {
    */
   public function processDefinition(&$definition, $plugin_id) {
     parent::processDefinition($definition, $plugin_id);
-    /** @var ProviderInterface $provider */
+    /** @var \Drupal\bootstrap\Plugin\Provider\ProviderInterface $provider */
     $provider = new $definition['class'](['theme' => $this->theme], $plugin_id, $definition);
     $provider->processDefinition($definition, $plugin_id);
   }