Skip to content

Commit

Permalink
Merge pull request #190 from vanilophp/feat-billpayer-updated-event
Browse files Browse the repository at this point in the history
Added the OrderBillpayerUpdated event
  • Loading branch information
fulopattila122 authored Nov 18, 2024
2 parents dcd27ab + 24b874f commit 8029de8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
- Fixed an error when attempting to remove a product from the cart which is not in the by [xujiongze](https://github.com/xujiongze) in [#188](https://github.com/vanilophp/framework/pull/188)
- Fixed the `Channel::getCurrency()` method returning the wrong attribute by [Ouail](https://github.com/ouail) in [#189](https://github.com/vanilophp/framework/pull/189)
- Fixed the logic of the payment-dependent shipping fee calculator
- Added the `OrderBillpayerUpdated` event

## 4.1.0
##### 2024-07-11
Expand Down
1 change: 1 addition & 0 deletions src/Order/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Added `domain` field to the orders table
- Added then automatic completion of `$order->domain` from the current request to the OrderFactory
- Changed `OrderItem::hasConfiguration()` to return false on empty arrays as well
- Added the `OrderBillpayerUpdated` event

## 4.1.0
##### 2024-07-11
Expand Down
9 changes: 9 additions & 0 deletions src/Order/Events/OrderBillpayerUpdated.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php

declare(strict_types=1);

namespace Vanilo\Order\Events;

class OrderBillpayerUpdated extends BaseOrderEvent
{
}

0 comments on commit 8029de8

Please sign in to comment.