Skip to content

Commit

Permalink
Bugfix: Remove returns types #574
Browse files Browse the repository at this point in the history
  • Loading branch information
michielgerritsen committed Jun 23, 2024
1 parent 4d6cebd commit 6857742
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ interface {{ ModelName }}SearchResultsInterface extends SearchResultsInterface
/**
* @return \{{ VendorName }}\{{ ModuleName }}\Api\Data\{{ ModelName }}Interface[]
*/
public function getItems(): array;
public function getItems();

/**
* @param \{{ VendorName }}\{{ ModuleName }}\Api\Data\{{ ModelName }}Interface[] $items
*/
public function setItems(array $items): static;
public function setItems(array $items);
}

0 comments on commit 6857742

Please sign in to comment.