2016-07-19 17:07:59 +02:00
|
|
|
<?php
|
2017-10-12 10:13:20 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2016-07-19 17:07:59 +02:00
|
|
|
namespace Shlinkio\Shlink\Rest;
|
|
|
|
|
|
|
|
|
|
use Zend\Config\Factory;
|
|
|
|
|
use Zend\Stdlib\Glob;
|
|
|
|
|
|
|
|
|
|
class ConfigProvider
|
|
|
|
|
{
|
|
|
|
|
public function __invoke()
|
|
|
|
|
{
|
|
|
|
|
return Factory::fromFiles(Glob::glob(__DIR__ . '/../config/{,*.}config.php', Glob::GLOB_BRACE));
|
|
|
|
|
}
|
|
|
|
|
}
|