1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 15:14:04 +00:00
This commit is contained in:
Samuel Štancl 2019-08-17 22:31:49 +02:00
parent a00113b3d1
commit c75c9a7799
3 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,28 @@
<?php
namespace Stancl\Tenancy\Tests\Etc;
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()
{
//
}
}