Co-authored-by: Niels Lange <info@nielslange.de>
This commit is contained in:
Paulo Arromba 2023-01-26 09:31:02 +00:00 committed by GitHub
parent 06b9b29454
commit 729bec698c
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class CheckoutSchema extends AbstractSchema {
public function __construct( ExtendSchema $extend, SchemaController $controller ) {
parent::__construct( $extend, $controller );
$this->billing_address_schema = $this->controller->get( BillingAddressSchema::IDENTIFIER );
$this->shipping_address_schema = $this->controller->get( BillingAddressSchema::IDENTIFIER );
$this->shipping_address_schema = $this->controller->get( ShippingAddressSchema::IDENTIFIER );
$this->image_attachment_schema = $this->controller->get( ImageAttachmentSchema::IDENTIFIER );
}