mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
15 lines
273 B
PHP
15 lines
273 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Integrations;
|
|
|
|
use function Shlinkio\Shlink\Common\loadConfigFromGlob;
|
|
|
|
class ConfigProvider
|
|
{
|
|
public function __invoke()
|
|
{
|
|
return loadConfigFromGlob(__DIR__ . '/../config/{,*.}config.php');
|
|
}
|
|
}
|