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