Files
shlink/module/IpGeolocation/src/ConfigProvider.php
Alejandro Celaya 64916dafac Fixed coding styles
2019-08-10 14:16:19 +02:00

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');
}
}