1
0
mirror of https://github.com/flarum/core.git synced 2025-07-24 02:01:19 +02:00

Split up old CoreServiceProvider

This commit is contained in:
Franz Liedke
2017-06-24 14:51:42 +02:00
parent ede7e96282
commit 6e8b8ac357
9 changed files with 187 additions and 48 deletions

View File

@@ -0,0 +1,25 @@
<?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\Frontend;
use Flarum\Foundation\AbstractServiceProvider;
class FrontendServiceProvider extends AbstractServiceProvider
{
/**
* {@inheritdoc}
*/
public function boot()
{
$this->loadViewsFrom(__DIR__.'/../../views', 'flarum');
}
}