rector/tests/NodeVisitor/UpgradeDeprecation/ReplaceDeprecatedConstantNodeVisitor/correct/correct.php.inc

10 lines
161 B
PHP

<?php declare (strict_types=1);
class ClassWithExternalConstant
{
public function getValue()
{
return ClassWithConstants::NEW_CONSTANT;
}
}