8 lines
84 B
PHP
8 lines
84 B
PHP
<?php
|
|
|
|
trait T {
|
|
public function foo(): string {
|
|
return "oops";
|
|
}
|
|
}
|