Skip to content

Commit

Permalink
Add missing interface method
Browse files Browse the repository at this point in the history
  • Loading branch information
loevgaard committed Aug 29, 2024
1 parent e6361a5 commit 41458f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Client/Endpoint/ProductEndpointInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
/**
* @extends EndpointInterface<Product>
* @extends CreatableEndpointInterface<Product>
* @extends UpdatableEndpointInterface<Product>
*/
interface ProductEndpointInterface extends EndpointInterface, CreatableEndpointInterface, DeletableEndpointInterface
interface ProductEndpointInterface extends EndpointInterface, CreatableEndpointInterface, DeletableEndpointInterface, UpdatableEndpointInterface
{
/**
* @return PaginatedCollection<Product>
Expand Down

0 comments on commit 41458f5

Please sign in to comment.