1
0
Fork 0
mirror of https://github.com/prurigro/hypothetical.git synced 2025-03-09 05:49:58 -04:00
hypothetical/app/Providers/AppServiceProvider.php

29 lines
403 B
PHP
Raw Normal View History

<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
}