<?php trait ExpectsFooMethod { abstract public function foo(): string; } trait ProvidesFooMethod { use ExpectsFooMethod; public function foo(): string {} } final readonly class FooMethodImpl { use ProvidesFooMethod; }
You have javascript disabled. You will not be able to edit any code.