mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-13 12:33:52 +01:00
* remove doctrine/annotations * Refactor doctrine/annotation parser to static reflection with phpdoc-parser * remove doctirne-annotation-parser-syncer * remove annotation stubs * use nodes * almost there * [ci-review] Rector Rectify * skip temporary * phpstan: remove fixed messages Co-authored-by: kaizen-ci <info@kaizen-ci.org>
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()
|
|
{
|
|
}
|
|
}
|