richard
/
cyca
Archived
1
0
Fork 0
This repository has been archived on 2024-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
cyca/app/Providers/AppServiceProvider.php

25 lines
397 B
PHP
Executable File

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