* * 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() { } }