laravel/tests/TestCase.php
Taylor Otwell 6a68092228
Revert "Uses LazilyRefreshDatabase by default (#5696)" (#5700)
This reverts commit 4578193d52f148c79b16a552db65e29a65fee209.
2021-10-05 09:23:35 -05:00

11 lines
163 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}