rector/src/constants.php
2023-02-02 09:24:12 +00:00

14 lines
297 B
PHP

<?php
declare (strict_types=1);
namespace RectorPrefix202302;
// mimic missing T_ENUM constant on PHP 8.0-
if (!\defined('T_ENUM')) {
\define('T_ENUM', 5000);
}
// mimic missing T_NAME_RELATIVE constant on PHP 8.0-
if (!\defined('T_NAME_RELATIVE')) {
\define('T_NAME_RELATIVE', 5001);
}