rector/vendor/rector/rector-phpunit/src/Set/PHPUnitLevelSetList.php
Tomas Votruba fc81ed9173 Updated Rector to commit 75d1dca2ef328d91cff2b642e79f1c442696d0a1
75d1dca2ef Don't get type from PropertyFetch for not natively typed properties (#3327)
2023-02-06 18:49:21 +00:00

37 lines
968 B
PHP

<?php
declare (strict_types=1);
namespace Rector\PHPUnit\Set;
use Rector\Set\Contract\SetListInterface;
/**
* @api
*/
final class PHPUnitLevelSetList implements SetListInterface
{
/**
* @var string
*/
public const UP_TO_PHPUNIT_50 = __DIR__ . '/../../config/sets/level/up-to-phpunit-50.php';
/**
* @var string
*/
public const UP_TO_PHPUNIT_60 = __DIR__ . '/../../config/sets/level/up-to-phpunit-60.php';
/**
* @var string
*/
public const UP_TO_PHPUNIT_70 = __DIR__ . '/../../config/sets/level/up-to-phpunit-70.php';
/**
* @var string
*/
public const UP_TO_PHPUNIT_80 = __DIR__ . '/../../config/sets/level/up-to-phpunit-80.php';
/**
* @var string
*/
public const UP_TO_PHPUNIT_90 = __DIR__ . '/../../config/sets/level/up-to-phpunit-90.php';
/**
* @var string
*/
public const UP_TO_PHPUNIT_100 = __DIR__ . '/../../config/sets/level/up-to-phpunit-100.php';
}