Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve dx with extending refund type #312

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Command/GenerateCreditMemo.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
use Sylius\RefundPlugin\Model\ShipmentRefund;
use Webmozart\Assert\Assert;

final class GenerateCreditMemo
class GenerateCreditMemo
{
/** @var string */
private $orderNumber;
Expand Down
2 changes: 1 addition & 1 deletion src/Command/RefundUnits.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
use Sylius\RefundPlugin\Model\ShipmentRefund;
use Webmozart\Assert\Assert;

final class RefundUnits
class RefundUnits
{
/** @var string */
private $orderNumber;
Expand Down
2 changes: 1 addition & 1 deletion src/Command/SendCreditMemo.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace Sylius\RefundPlugin\Command;

final class SendCreditMemo
class SendCreditMemo
{
/** @var string */
private $number;
Expand Down
2 changes: 1 addition & 1 deletion src/Event/CreditMemoGenerated.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace Sylius\RefundPlugin\Event;

final class CreditMemoGenerated
class CreditMemoGenerated
{
/** @var string */
private $number;
Expand Down
2 changes: 1 addition & 1 deletion src/Event/RefundPaymentGenerated.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace Sylius\RefundPlugin\Event;

final class RefundPaymentGenerated
class RefundPaymentGenerated
{
/** @var int */
private $id;
Expand Down
2 changes: 1 addition & 1 deletion src/Event/ShipmentRefunded.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace Sylius\RefundPlugin\Event;

final class ShipmentRefunded
class ShipmentRefunded
{
/** @var string */
private $orderNumber;
Expand Down
2 changes: 1 addition & 1 deletion src/Event/UnitRefunded.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace Sylius\RefundPlugin\Event;

final class UnitRefunded
class UnitRefunded
{
/** @var string */
private $orderNumber;
Expand Down
2 changes: 1 addition & 1 deletion src/Event/UnitsRefunded.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
use Sylius\RefundPlugin\Model\ShipmentRefund;
use Webmozart\Assert\Assert;

final class UnitsRefunded
class UnitsRefunded
{
/** @var string */
private $orderNumber;
Expand Down