xref
: /
PHP-8.3
/
Zend
/
tests
/
bug81192_trait.inc
(revision 1c6df2df)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
<?php
2
3
trait T {
4
public function foo(): string {
5
return "oops";
6
}
7
}
8