From d0fe843b27ee6f64191bc32dc1d0b27bf0d40f6d Mon Sep 17 00:00:00 2001 From: "Eric Richer eric.richer@vistoconsulting.com" Date: Mon, 25 Nov 2024 21:48:19 -0500 Subject: [PATCH] Replaced a lingering reference to Interop Container Signed-off-by: Eric Richer eric.richer@vistoconsulting.com --- src/Factory/CorsServiceFactory.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Factory/CorsServiceFactory.php b/src/Factory/CorsServiceFactory.php index 3e15755..7507c8a 100644 --- a/src/Factory/CorsServiceFactory.php +++ b/src/Factory/CorsServiceFactory.php @@ -21,11 +21,11 @@ namespace LmcCors\Factory; -use interop\container\containerinterface; use Laminas\ServiceManager\Factory\FactoryInterface; use LmcCors\Options\CorsOptions; use LmcCors\Service\CorsService; use Psr\Container\ContainerExceptionInterface; +use Psr\Container\ContainerInterface; use Psr\Container\NotFoundExceptionInterface; /** @@ -38,7 +38,7 @@ class CorsServiceFactory implements FactoryInterface * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ - public function __invoke(containerinterface $container, $requestedName, ?array $options = null): CorsService + public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null): CorsService { /** @var CorsOptions $corsOptions */ $corsOptions = $container->get(CorsOptions::class);