koel/tests/Feature/V6/TestCase.php
2022-07-26 22:08:31 +02:00

15 lines
238 B
PHP

<?php
namespace Tests\Feature\V6;
use Tests\Feature\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
public function setUp(): void
{
putenv('X_API_VERSION=v6');
parent::setUp();
}
}