rector/vendor/rector/rector-php-parser/src/Set/PhpParserSetList.php
Tomas Votruba c4794ecd48 Updated Rector to commit 5cd60b2607153f45ea7f113768593f9a364a1291
5cd60b2607 Add rector/rector-php-parser to require in composer.json (#2932)
2022-09-17 09:09:04 +00:00

18 lines
315 B
PHP

<?php
declare (strict_types=1);
namespace Rector\PhpParser\Set;
use Rector\Set\Contract\SetListInterface;
/**
* @api
*/
final class PhpParserSetList implements SetListInterface
{
/**
* @api
* @var string
*/
public const PHP_PARSER_50 = __DIR__ . '/../../config/sets/php-parser-50.php';
}