Code & Deploy
Code
Models
Repos
Sign in
@matheusbsbs
/
matheus-bagliano
matheus-bagliano
/
t
/
t4018
/
php-abstract-method
Code
Commits
Pulls
CI/CD
82,037
test
bisect
jch
maint
master
next
seen
test
todo
text
7 lines
110 Bytes
Copy permalink
Copy
Raw
1
abstract class Klass
2
{
3
abstract public function RIGHT(): ?string
4
{
5
return 'ChangeMe';
6
}
7
}