rector/stubs/Nette/Tester/TestCase.php
Tomas Votruba b2412ad62a
Refactor doctrine/annotation from dynamic to own static-reflection parser (#5974)
* 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>
2021-04-04 11:01:11 +02:00

17 lines
163 B
PHP

<?php
declare(strict_types=1);
namespace Tester;
if (class_exists('Tester\TestCase')) {
return;
}
class TestCase
{
public function run()
{
}
}