mirror of
https://github.com/git/git.git
synced 2024-12-28 03:03:39 +08:00
8 lines
110 B
Plaintext
8 lines
110 B
Plaintext
|
abstract class Klass
|
||
|
{
|
||
|
abstract public function RIGHT(): ?string
|
||
|
{
|
||
|
return 'ChangeMe';
|
||
|
}
|
||
|
}
|