mirror of
https://github.com/koel/koel
synced 2024-12-19 17:13:09 +00:00
15 lines
238 B
PHP
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();
|
|
}
|
|
}
|