Skip to content

Commit

Permalink
Merge pull request #12 from AdamSolaris/master
Browse files Browse the repository at this point in the history
Fix Payload $fiscalReceiptNumber serialized type
  • Loading branch information
DmitriyMatvienko committed Jan 10, 2022
2 parents c5e8272 + 2d4eabb commit 1461056
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/V4/DTO/Report/Payload.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
class Payload
{
/**
* @var string
* @var int
*
* @Serializer\Type("string")
* @Serializer\Type("integer")
*/
private $fiscalReceiptNumber;

Expand Down
4 changes: 2 additions & 2 deletions src/V5/DTO/Report/Payload.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
class Payload
{
/**
* @var string
* @var int
*
* @Serializer\Type("string")
* @Serializer\Type("integer")
*/
private $fiscalReceiptNumber;

Expand Down

0 comments on commit 1461056

Please sign in to comment.