Fix stub PHPUnit\Framework\TestCase (#1960)

This commit is contained in:
Abdul Malik Ikhsan 2022-03-25 20:02:35 +07:00 committed by GitHub
parent 86eb0dd363
commit 699e314ef3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 6 deletions

View File

@ -4,10 +4,8 @@ declare(strict_types=1);
namespace PHPUnit\Framework;
if (class_exists('PHPUnit\Framework\TestCase')) {
return;
}
abstract class TestCase
{
if (! class_exists('PHPUnit\Framework\TestCase')) {
abstract class TestCase
{
}
}