mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 19:53:14 +01:00
17 lines
163 B
PHP
17 lines
163 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tester;
|
|
|
|
if (class_exists('Tester\TestCase')) {
|
|
return;
|
|
}
|
|
|
|
class TestCase
|
|
{
|
|
public function run()
|
|
{
|
|
}
|
|
}
|