git/t/t4018/php-final-method

8 lines
97 B
Plaintext

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