retrofairie/tests/TestCase.php
2025-02-24 20:31:25 -08:00

16 lines
329 B
PHP
Executable file

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
/**
* Indicates whether the default seeder should run before each test.
*
* @var bool
* @noinspection PhpMissingFieldTypeInspection
*/
// protected $seed = true;
}