This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
bee-backend-ARCHIVED/src/ApiDomain/External/Authentication/src/ConfigProvider.php
2024-08-24 20:33:05 +00:00

17 lines
354 B
PHP

<?php
declare(strict_types=1);
namespace Template\API\External\Authentication;
class ConfigProvider
{
public function __invoke(): array
{
return [
'dependencies' => require __DIR__ . '/./../config/service_manager.php',
'routes' => require __DIR__ . '/./../config/routes.php',
];
}
}