fix: Add height parameter to OrderPacked event

Added height to the OrderPacked event constructor and dispatch call to match
the packing form which captures width, length, height, and weight.
This commit is contained in:
twotalesanimation
2026-01-02 21:25:05 +02:00
parent 5cd8c05a7c
commit 22dfb12948
2 changed files with 9 additions and 1 deletions
+1
View File
@@ -14,6 +14,7 @@ class OrderPacked
public Order $order,
public float $width,
public float $length,
public float $height,
public float $weight,
public ?int $packedBy = null,
) {