]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4018/php-final-method
The seventh batch
[thirdparty/git.git] / t / t4018 / php-final-method
CommitLineData
aff92827
JS
1class Klass
2{
3 final public function RIGHT(): string
4 {
5 return 'ChangeMe';
6 }
7}