18 lines
324 B
PHP
18 lines
324 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
protected function tearDown(): void
|
|
{
|
|
if (function_exists('tenancy') && tenancy()->initialized) {
|
|
tenancy()->end();
|
|
}
|
|
|
|
parent::tearDown();
|
|
}
|
|
}
|