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 Laminas \ApiTools \Versioning \Factory ;
66
7- use interop \container \containerinterface ;
87use Laminas \ApiTools \Versioning \AcceptListener ;
8+ use Psr \Container \ContainerInterface ;
99
1010class AcceptListenerFactory
1111{
1212 /**
1313 * @return AcceptListener
1414 */
15- public function __invoke (containerinterface $ container )
15+ public function __invoke (ContainerInterface $ container )
1616 {
1717 $ config = $ container ->has ('config ' ) ? $ container ->get ('config ' ) : [];
1818 $ config = $ config ['api-tools-versioning ' ]['content-type ' ] ?? [];
Original file line number Diff line number Diff line change 44
55namespace Laminas \ApiTools \Versioning \Factory ;
66
7- use interop \container \containerinterface ;
87use Laminas \ApiTools \Versioning \ContentTypeListener ;
8+ use Psr \Container \ContainerInterface ;
99
1010class ContentTypeListenerFactory
1111{
1212 /**
1313 * @return ContentTypeListener
1414 */
15- public function __invoke (containerinterface $ container )
15+ public function __invoke (ContainerInterface $ container )
1616 {
1717 $ config = $ container ->has ('config ' ) ? $ container ->get ('config ' ) : [];
1818 $ config = $ config ['api-tools-versioning ' ]['content-type ' ] ?? [];
You can’t perform that action at this time.
0 commit comments