mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-31 12:42:05 +01:00
9a2931cbe4
bdc2fc9963
[NodeManipulator] Remove parent lookup on PropertyFetchAssignManipulator (#4037)
14 lines
297 B
PHP
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);
|
|
}
|