*/ class EmptyResponse implements Arrayable { public function __construct() {} public static function fromArray(array $data): self { return new self; } public function toArray(): array { return []; } }