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

28 lines
403 B
PHP

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