rector/src/constants.php
Tomas Votruba 9a2931cbe4 Updated Rector to commit bdc2fc99631f67eeb2d96e2cf0906279c2561c9a
bdc2fc9963 [NodeManipulator] Remove parent lookup on PropertyFetchAssignManipulator (#4037)
2023-06-01 08:56:46 +00:00

14 lines
297 B
PHP

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