mirror of
https://github.com/Ne-Lexa/php-zip.git
synced 2025-10-09 12:26:29 +02:00
19 lines
234 B
PHP
19 lines
234 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpZip\Tests\Polyfill;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* @internal
|
|
*
|
|
* @small
|
|
*/
|
|
class LegacyTestCase extends TestCase
|
|
{
|
|
use PhpUnit8CompatTrait;
|
|
use PhpUnit9CompatTrait;
|
|
}
|