Skip to content

Commit

Permalink
Added the OrderShippingAddressUpdated event
Browse files Browse the repository at this point in the history
  • Loading branch information
molnarerwin committed Nov 19, 2024
1 parent 8029de8 commit d7d941f
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 @@ -45,6 +45,7 @@
- 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
- Added the `OrderShippingAddressUpdated` 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 @@ -9,6 +9,7 @@
- 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
- Added the `OrderShippingAddressUpdated` event

## 4.1.0
##### 2024-07-11
Expand Down
9 changes: 9 additions & 0 deletions src/Order/Events/OrderShippingAddressUpdated.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 OrderShippingAddressUpdated extends BaseOrderEvent
{
}

0 comments on commit d7d941f

Please sign in to comment.