X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fmodules%2Fcontrib%2Fdevel%2Fwebprofiler%2Fsrc%2FDataCollector%2FServicesDataCollector.php;fp=web%2Fmodules%2Fcontrib%2Fdevel%2Fwebprofiler%2Fsrc%2FDataCollector%2FServicesDataCollector.php;h=ef653f8051a5e28713cc54403ee11acde53ac21c;hp=b7ecb1095588da0ba0e84aa74df413c4e67d4bfd;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/web/modules/contrib/devel/webprofiler/src/DataCollector/ServicesDataCollector.php b/web/modules/contrib/devel/webprofiler/src/DataCollector/ServicesDataCollector.php index b7ecb1095..ef653f805 100644 --- a/web/modules/contrib/devel/webprofiler/src/DataCollector/ServicesDataCollector.php +++ b/web/modules/contrib/devel/webprofiler/src/DataCollector/ServicesDataCollector.php @@ -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; }