feat: working on ci/cd

This commit is contained in:
Paulo Castellano 2026-01-18 19:05:34 -03:00
parent 69fba7af23
commit 1e09e0b1b9

View file

@ -1,10 +1,22 @@
<?php
declare(strict_types=1);
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
*/
protected $seed = true;
protected function setUp(): void
{
parent::setUp();
}
}