D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tvinntxo
/
www
/
wp-content
/
plugins
/
woocommerce
/
src
/
StoreApi
/
Schemas
/
V1
/
Filename :
CheckoutOrderSchema.php
back
Copy
<?php namespace Automattic\WooCommerce\StoreApi\Schemas\V1; use Automattic\WooCommerce\StoreApi\SchemaController; use Automattic\WooCommerce\StoreApi\Payments\PaymentResult; use Automattic\WooCommerce\StoreApi\Schemas\ExtendSchema; /** * CheckoutOrderSchema class. */ class CheckoutOrderSchema extends CheckoutSchema { /** * The schema item name. * * @var string */ protected $title = 'checkout-order'; /** * The schema item identifier. * * @var string */ const IDENTIFIER = 'checkout-order'; /** * Checkout schema properties. * * @return array */ public function get_properties() { $parent_properties = parent::get_properties(); unset( $parent_properties['create_account'] ); return $parent_properties; } }