Skip to content

Commit

Permalink
Merge pull request #727 from dpash/fix-infinite-recursion
Browse files Browse the repository at this point in the history
Fix infinite recursion bug
  • Loading branch information
jlevers authored Jun 9, 2024
2 parents 4c81f52 + b4d036b commit b481b28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Seller/SellerConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ public function easyShipV20220323(): EasyShipV20220323\Api
{
return new EasyShipV20220323\Api($this);
}

public function fbaInboundV20240320(): FBAInboundV20240320\Api
{
return $this->fbaInboundV20240320();
return new FBAInboundV20240320\Api($this);
}

public function fbaInboundV0(): FBAInboundV0\Api
Expand Down

0 comments on commit b481b28

Please sign in to comment.