Automattic\WooCommerce\RestApi\Utilities
ImageAttachment::__construct()
Constructor.
Method of the class: ImageAttachment{}
No Hooks.
Return
null
. Nothing (null).
Usage
$ImageAttachment = new ImageAttachment(); $ImageAttachment->__construct( $id, $object_id );
- $id(int)
- Attachment ID.
- $object_id(int)
- Object ID.
ImageAttachment::__construct() ImageAttachment:: construct code WC 9.5.1
public function __construct( $id = 0, $object_id = 0 ) { $this->id = (int) $id; $this->object_id = (int) $object_id; }