koel/tests/Feature/V6/TestCase.php

16 lines
238 B
PHP
Raw Normal View History

2022-07-26 20:08:31 +00:00
<?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();
}
}