golden hour
/home/godaofbq/hyperbarichelp.com/wp-content/plugins/woocommerce/src/Api/Interfaces
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
ObjectWithId.php
405 B
Del
OK
Product.php
5.13 KB
Del
OK
Edit: ObjectWithId.php
<?php declare(strict_types=1); namespace Automattic\WooCommerce\Api\Interfaces; use Automattic\WooCommerce\Api\Attributes\Description; /** * Interface trait for objects that have a numeric ID. */ #[Description( 'An object with a numeric ID.' )] trait ObjectWithId { /** * The unique numeric identifier. * * @var int */ #[Description( 'The unique numeric identifier.' )] public int $id; }
Save