Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
gijsmin committed Nov 27, 2024
1 parent 935ea55 commit e34325e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/PaymentMethods/KlarnaKP/Models/IPay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ export class Pay extends ServiceParameter {
articles.map((article) => new Article(article))
);
}

protected getGroups() {
return super.getGroups({
Articles: 'Article',
});
}

protected getCountable() {
return super.getCountable(['Articles']);
}
}

export class Customer extends Person {
Expand Down

0 comments on commit e34325e

Please sign in to comment.