git/t/t4018/php-final-method

class Klass
{
    final public function RIGHT(): string
    {
        return 'ChangeMe';
    }
}