rector/src/constants.php
Tomas Votruba e9e85a1300 Updated Rector to commit a8b01f217b
a8b01f217b [automated] Re-Generate Nodes/Rectors Documentation (#619)
2021-08-08 00:26:40 +00:00

14 lines
299 B
PHP

<?php
declare (strict_types=1);
namespace RectorPrefix20210808;
// 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);
}