mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 05:00:19 +08:00
34 lines
897 B
PHP
34 lines
897 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Settings;
|
|
|
|
use Flarum\Foundation\AbstractServiceProvider;
|
|
use Illuminate\Contracts\Container\Container;
|
|
use Illuminate\Database\ConnectionInterface;
|
|
|
|
class SettingsServiceProvider extends AbstractServiceProvider
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->container->singleton(SettingsRepositoryInterface::class, function (Container $container) {
|
|
return new MemoryCacheSettingsRepository(
|
|
new DatabaseSettingsRepository(
|
|
$container->make(ConnectionInterface::class)
|
|
)
|
|
);
|
|
});
|
|
|
|
$this->container->alias(SettingsRepositoryInterface::class, 'flarum.settings');
|
|
}
|
|
}
|