Welcome to mirror list, hosted at ThFree Co, Russian Federation.

php-final-method « t4018 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 537fb8ad9ae46152029deb63d279be98e9fb11e6 (plain)
1
2
3
4
5
6
7
class Klass
{
    final public function RIGHT(): string
    {
        return 'ChangeMe';
    }
}