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

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