summaryrefslogtreecommitdiffstats
path: root/t/t4018/php-final-method
blob: 537fb8ad9ae46152029deb63d279be98e9fb11e6 (plain)
1
2
3
4
5
6
7
class Klass
{
    final public function RIGHT(): string
    {
        return 'ChangeMe';
    }
}