21 lines
556 B
PHP
21 lines
556 B
PHP
<?php
|
|
|
|
/**
|
|
* This file was autogenerated by laminas-api-tools/api-tools-mvc-auth (bin/api-tools-mvc-auth-oauth2-override.php),
|
|
* and overrides the Laminas\ApiTools\OAuth2\Service\OAuth2Server to provide the ability to create named
|
|
* OAuth2\Server instances.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Laminas\ApiTools\MvcAuth\Factory\NamedOAuth2ServerFactory;
|
|
use Laminas\ApiTools\OAuth2\Service\OAuth2Server;
|
|
|
|
return [
|
|
'service_manager' => [
|
|
'factories' => [
|
|
OAuth2Server::class => NamedOAuth2ServerFactory::class,
|
|
],
|
|
],
|
|
];
|