Skip to content

Commit

Permalink
add new payment type - reflected with receipt
Browse files Browse the repository at this point in the history
  • Loading branch information
escapeboy committed Jun 7, 2022
1 parent 7b694d8 commit fa55150
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ $xml = (string) \Audit\XmlConverter::convert($shop);
\Audit\PaymentTypes\WithPostPayment::class; //3
\Audit\PaymentTypes\PaymentService::class; //4
\Audit\PaymentTypes\Other::class; //5
\Audit\PaymentTypes\ReflectedWithReceipt::class; //6
```

## Return methods
Expand Down
9 changes: 9 additions & 0 deletions lib/PaymentTypes/ReflectedWithReceipt.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);

namespace Audit\PaymentTypes;

interface ReflectedWithReceipt
{
public const CODE = 6;
}

0 comments on commit fa55150

Please sign in to comment.