File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 44
55namespace LaminasTest \ApiTools \Versioning \Factory ;
66
7- use interop \container \containerinterface ;
87use Laminas \ApiTools \Versioning \AcceptListener ;
98use Laminas \ApiTools \Versioning \Factory \AcceptListenerFactory ;
109use PHPUnit \Framework \TestCase ;
1110use Prophecy \PhpUnit \ProphecyTrait ;
11+ use Psr \Container \ContainerInterface ;
1212use ReflectionClass ;
1313
1414class AcceptListenerFactoryTest extends TestCase
@@ -17,7 +17,7 @@ class AcceptListenerFactoryTest extends TestCase
1717
1818 public function setUp (): void
1919 {
20- $ this ->container = $ this ->prophesize (containerinterface ::class);
20+ $ this ->container = $ this ->prophesize (ContainerInterface ::class);
2121
2222 $ r = new ReflectionClass (AcceptListener::class);
2323 $ props = $ r ->getDefaultProperties ();
Original file line number Diff line number Diff line change 44
55namespace LaminasTest \ApiTools \Versioning \Factory ;
66
7- use interop \container \containerinterface ;
87use Laminas \ApiTools \Versioning \ContentTypeListener ;
98use Laminas \ApiTools \Versioning \Factory \ContentTypeListenerFactory ;
109use PHPUnit \Framework \TestCase ;
1110use Prophecy \PhpUnit \ProphecyTrait ;
11+ use Psr \Container \ContainerInterface ;
1212use ReflectionClass ;
1313
1414class ContentTypeListenerFactoryTest extends TestCase
@@ -17,7 +17,7 @@ class ContentTypeListenerFactoryTest extends TestCase
1717
1818 public function setUp (): void
1919 {
20- $ this ->container = $ this ->prophesize (containerinterface ::class);
20+ $ this ->container = $ this ->prophesize (ContainerInterface ::class);
2121
2222 $ r = new ReflectionClass (ContentTypeListener::class);
2323 $ props = $ r ->getDefaultProperties ();
You can’t perform that action at this time.
0 commit comments