1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 13:54:04 +00:00

Delete AppServiceProvider

This commit is contained in:
Samuel Štancl 2019-08-19 19:31:03 +02:00
parent 4d64542ce1
commit 4342c5eb1b
2 changed files with 0 additions and 29 deletions

View file

@ -1,28 +0,0 @@
<?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()
{
//
}
}

View file

@ -123,7 +123,6 @@ abstract class TestCase extends \Orchestra\Testbench\TestCase
protected function getPackageProviders($app) protected function getPackageProviders($app)
{ {
return [ return [
\Stancl\Tenancy\Tests\Etc\AppServiceProvider::class,
\Stancl\Tenancy\TenancyServiceProvider::class, \Stancl\Tenancy\TenancyServiceProvider::class,
]; ];
} }