PluginProbe
LitCommerce: Multi-channel Selling Tool For WooCommerce / trunk
LitCommerce: Multi-channel Selling Tool For WooCommerce vtrunk
litcommerce / LitCommerceResultObject.php

LitCommerceResultObject.php in LitCommerce: Multi-channel Selling Tool For WooCommerce trunk, at LitCommerceResultObject.php

21 lines 315 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class LitCommerce_Result_Object
4 {
5 /** @var bool */
6 public $success;
7
8 /** @var string */
9 public $message;
10
11 /** @var array */
12 public $data;
13
14 public function __construct($success, $message = '', $data = array())
15 {
16 $this->success = $success;
17 $this->message = $message;
18 $this->data = $data;
19 }
20 }
21