mirror of
https://github.com/flarum/core.git
synced 2025-10-12 07:24:27 +02:00
35 lines
852 B
PHP
35 lines
852 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Formatter;
|
|
|
|
use Flarum\Foundation\AbstractServiceProvider;
|
|
use Illuminate\Contracts\Container\Container;
|
|
|
|
class FormatterServiceProvider extends AbstractServiceProvider
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->singleton('flarum.formatter', function (Container $container) {
|
|
return new Formatter(
|
|
$container->make('cache.store'),
|
|
$container->make('events'),
|
|
$this->app->storagePath().'/formatter'
|
|
);
|
|
});
|
|
|
|
$this->app->alias('flarum.formatter', Formatter::class);
|
|
}
|
|
}
|