Added email verified as requirement for non-local environments

This commit is contained in:
Constantin Graf
2024-04-15 19:24:57 +02:00
parent 7618b3d8a5
commit feb70910c7
6 changed files with 139 additions and 20 deletions

View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace Tests\Unit\Middleware;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
abstract class MiddlewareTestAbstract extends TestCase
{
use RefreshDatabase;
}