📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 22:22:07
📂
/ (Root)
/
home
/
orkouolp
/
web
/
orkofarms.com
/
wp-content
/
plugins
/
woocommerce
/
src
/
StoreApi
/
Schemas
/
V1
📍 /home/orkouolp/web/orkofarms.com/wp-content/plugins/woocommerce/src/StoreApi/Schemas/V1
🔄 Refresh
✏️
Editing: PatternsSchema.php
Writable
<?php declare( strict_types = 1 ); namespace Automattic\WooCommerce\StoreApi\Schemas\V1; /** * OrderSchema class. */ class PatternsSchema extends AbstractSchema { /** * The schema item name. * * @var string */ protected $title = 'patterns'; /** * The schema item identifier. * * @var string */ const IDENTIFIER = 'patterns'; /** * Patterns schema properties. * * @return array */ public function get_properties() { return []; } /** * Get the Patterns response. * * @param array $item Item to get response for. * * @return array */ public function get_item_response( $item ) { return [ 'success' => true, ]; } }
💾 Save Changes
❌ Cancel