Skip to content

Commit

Permalink
QuoteMessage::addItem
Browse files Browse the repository at this point in the history
  • Loading branch information
mathielen committed May 27, 2024
1 parent 2b8661c commit 3b0a173
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/CXml/Model/Message/QuoteMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,15 @@ public function getQuoteMessageHeader(): QuoteMessageHeader
return $this->quoteMessageHeader;
}

public function getQuoteMessageItems(): array
public function getItems(): array
{
return $this->quoteMessageItems;
}

public function addItem(ItemIn $quoteMessageItem): self
{
$this->quoteMessageItems[] = $quoteMessageItem;

return $this;
}
}

0 comments on commit 3b0a173

Please sign in to comment.