Skip to content

Commit

Permalink
feature Sylius#312 Improve dx with extending refund type (AdamKasp)
Browse files Browse the repository at this point in the history
This PR was merged into the 1.0-dev branch.

Discussion
----------

Commits
-------

799c6d5 Remove finale from command and events
  • Loading branch information
lchrusciel authored and GSadee committed Jun 23, 2021
2 parents 07993fb + 799c6d5 commit 711a6a1
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
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

0 comments on commit 711a6a1

Please sign in to comment.