mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 16:14:03 +00:00
13 lines
279 B
PHP
13 lines
279 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Tests\WithoutTenancy;
|
|
|
|
abstract class TestCase extends \Stancl\Tenancy\Tests\TestCase
|
|
{
|
|
protected function getPackageProviders($app)
|
|
{
|
|
return []; // We will provide TenancyServiceProvider in tests
|
|
}
|
|
}
|