rector/stubs/Tester/TestCase.php

17 lines
163 B
PHP
Raw Normal View History

2019-10-13 07:59:52 +02:00
<?php
declare(strict_types=1);
namespace Tester;
if (class_exists('Tester\TestCase')) {
return;
}
class TestCase
{
public function run()
{
}
}