1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 04:54:03 +00:00
tenancy/tests/Etc/AppServiceProvider.php
Samuel Štancl c75c9a7799 wip
2019-08-17 22:31:49 +02:00

28 lines
414 B
PHP

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