1
0
mirror of https://github.com/Bubka/2FAuth.git synced 2025-03-08 04:03:38 +01:00
2FAuth/tests/TestCase.php
2022-11-25 15:20:36 +01:00

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();
}
}