mirror of
https://github.com/flarum/core.git
synced 2025-07-26 11:10:41 +02:00
38 lines
695 B
PHP
38 lines
695 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\Foundation;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Contracts\Foundation\Application;
|
|
|
|
abstract class AbstractServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* @var Application
|
|
*/
|
|
protected $app;
|
|
|
|
/**
|
|
* @param Application $app
|
|
*/
|
|
public function __construct(Application $app)
|
|
{
|
|
parent::__construct($app);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function register()
|
|
{
|
|
}
|
|
}
|