forked from amazon-php/sp-api-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from plentymarkets/feature/fulfillment_inbound…
…_api_2024 changes on sp- api sdk 2024 version
- Loading branch information
Showing
145 changed files
with
52,995 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10,479 changes: 10,479 additions & 0 deletions
10,479
src/AmazonPHP/SellingPartner/Api/FbaInboundApi/FulfillmentInboundSDK2024.php
Large diffs are not rendered by default.
Oops, something went wrong.
713 changes: 713 additions & 0 deletions
713
src/AmazonPHP/SellingPartner/Api/FbaInboundApi/FulfillmentInboundSDK2024Interface.php
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/AmazonPHP/SellingPartner/Exception/AssertionException.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Plenty\AmazonPHP\SellingPartner\Exception; | ||
|
||
class AssertionException extends Exception | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Plenty\AmazonPHP\SellingPartner; | ||
|
||
interface IdGenerator | ||
{ | ||
public function generate(): string; | ||
} |
15 changes: 15 additions & 0 deletions
15
src/AmazonPHP/SellingPartner/IdGenerator/UniqidGenerator.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Plenty\AmazonPHP\SellingPartner\IdGenerator; | ||
|
||
use Plenty\AmazonPHP\SellingPartner\IdGenerator; | ||
|
||
final class UniqidGenerator implements IdGenerator | ||
{ | ||
public function generate(): string | ||
{ | ||
return \uniqid('correlation_id_', true); | ||
} | ||
} |
Oops, something went wrong.