rector/stubs-rector/PHPUnit/Framework/TestCase.php
Tomas Votruba ec76745f1f Updated Rector to commit 699e314ef3
699e314ef3 Fix stub PHPUnit\Framework\TestCase (#1960)
2022-03-25 13:08:27 +00:00

12 lines
157 B
PHP

<?php
declare(strict_types=1);
namespace PHPUnit\Framework;
if (! class_exists('PHPUnit\Framework\TestCase')) {
abstract class TestCase
{
}
}