In code error - we implement interface and extend class. In code wrong.
interface Workable
{
public function work(): void;
}
interface Feedable
{
public function eat(): void;
}
interface Employee **extends** Feedable, Workable
{
}
class HumanEmployee **implements** Employee
{