mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 05:48:21 +01:00
ec76745f1f
699e314ef3
Fix stub PHPUnit\Framework\TestCase (#1960)
12 lines
157 B
PHP
12 lines
157 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PHPUnit\Framework;
|
|
|
|
if (! class_exists('PHPUnit\Framework\TestCase')) {
|
|
abstract class TestCase
|
|
{
|
|
}
|
|
}
|