Try changing
public function getFunctions()
To
public function getFunctions(): array
Your getFunctions()
declaration must match the extended getFunctions()
That’s basically what the error says. Docs probably are a bit outdated
Try changing
public function getFunctions()
To
public function getFunctions(): array
Your getFunctions()
declaration must match the extended getFunctions()
That’s basically what the error says. Docs probably are a bit outdated