refs: use refs_resolve_ref_unsafe_with_errno() where needed
[git] / t / t4018 / php-final-method
1 class Klass
2 {
3     final public function RIGHT(): string
4     {
5         return 'ChangeMe';
6     }
7 }