mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-06 07:13:11 +08:00
13 lines
217 B
PHP
13 lines
217 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Common;
|
|
|
|
class ConfigProvider
|
|
{
|
|
public function __invoke(): array
|
|
{
|
|
return loadConfigFromGlob(__DIR__ . '/../config/{,*.}config.php');
|
|
}
|
|
}
|