Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / devel / webprofiler / src / DataCollector / ServicesDataCollector.php
index b7ecb1095588da0ba0e84aa74df413c4e67d4bfd..ef653f8051a5e28713cc54403ee11acde53ac21c 100644 (file)
@@ -5,7 +5,7 @@ namespace Drupal\webprofiler\DataCollector;
 use Drupal\Core\StringTranslation\StringTranslationTrait;
 use Drupal\webprofiler\DependencyInjection\TraceableContainer;
 use Drupal\webprofiler\DrupalDataCollectorInterface;
-use Symfony\Component\DependencyInjection\IntrospectableContainerInterface;
+use Symfony\Component\DependencyInjection\ContainerInterface;
 use Symfony\Component\HttpFoundation\Request;
 use Symfony\Component\HttpFoundation\Response;
 use Symfony\Component\HttpKernel\DataCollector\DataCollector;
@@ -18,15 +18,15 @@ class ServicesDataCollector extends DataCollector implements DrupalDataCollector
   use StringTranslationTrait, DrupalDataCollectorTrait;
 
   /**
-   * @var \Symfony\Component\DependencyInjection\IntrospectableContainerInterface
+   * @var \Symfony\Component\DependencyInjection\ContainerInterface
    *   $container
    */
   private $container;
 
   /**
-   * @param IntrospectableContainerInterface $container
+   * @param \Symfony\Component\DependencyInjection\ContainerInterface $container
    */
-  public function __construct(IntrospectableContainerInterface $container) {
+  public function __construct(ContainerInterface $container) {
     $this->container = $container;
   }