1
0
mirror of https://github.com/robonen/education-project.git synced 2026-06-20 01:55:17 +00:00
Files
2020-12-03 23:33:04 +07:00

30 lines
394 B
PHP

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