Skip to content
Code-Schnipsel Gruppen Projekte
Bestätigt Commit 76e8e146 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

refactor: event handling

Übergeordneter bfef9ed8
No related branches found
No related tags found
2 Merge Requests!2Next,!1Dev
......@@ -14,7 +14,7 @@ function ($orderHash) {
$Checkout = new QUI\ERP\Order\SimpleCheckout\Checkout([
'orderHash' => $orderHash
]);
return $Checkout->getShipping();
},
['orderHash']
......
......@@ -2,8 +2,19 @@
namespace QUI\ERP\Order\SimpleCheckout;
/**
* Interface CheckoutStepInterface
*
* This interface represents a checkout step in a checkout process.
* It defines the method that any checkout step must implement.
*/
interface CheckoutStepInterface
{
/**
* Constructor for the class.
*
* @param Checkout $Checkout An instance of the Checkout class.
* @param array $attributes [optional] An array of attributes (default: empty array).
*/
public function __construct(Checkout $Checkout, $attributes = []);
}
\ No newline at end of file
}
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren