2FAuth/tests/TestCase.php

16 lines
239 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
protected function setUp() : void
{
parent::setUp();
}
}