From 3c458d49a204408421f69309ebe2dee8fe08bfc2 Mon Sep 17 00:00:00 2001 From: "Eric Richer eric.richer@vistoconsulting.com" Date: Mon, 5 Aug 2024 21:42:56 -0400 Subject: [PATCH] Fixed RoleServiceFactoryTest.php to remove refs to IdentityProviderInterface Signed-off-by: Eric Richer eric.richer@vistoconsulting.com --- test/Container/RoleServiceFactoryTest.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/Container/RoleServiceFactoryTest.php b/test/Container/RoleServiceFactoryTest.php index 5f023f6..bdf09d4 100644 --- a/test/Container/RoleServiceFactoryTest.php +++ b/test/Container/RoleServiceFactoryTest.php @@ -22,8 +22,6 @@ namespace LmcRbacTest\Container; use Laminas\ServiceManager\ServiceManager; -use LmcRbac\Identity\AuthenticationIdentityProviderFactory; -use LmcRbac\Identity\IdentityProviderInterface; use LmcRbac\Options\ModuleOptions; use LmcRbac\Role\InMemoryRoleProvider; use LmcRbac\Service\RoleService; @@ -50,8 +48,6 @@ public function testCanCreateRoleService(): void 'services' => [ ModuleOptions::class => $options, InMemoryRoleProvider::class => new InMemoryRoleProvider([]), -// \LmcRbac\Identity\AuthenticationIdentityProvider::class => $this->createMock(IdentityProviderInterface::class), - IdentityProviderInterface::class => $this->createMock(IdentityProviderInterface::class), ], ]);