14
14
use Illuminate \Database \Eloquent \Relations \HasMany ;
15
15
16
16
/**
17
- * @property int $id
18
- * @property string $name
19
- * @property string $type
20
- * @property int $order_item_id
21
- * @property string $order_item_name
22
- * @property string $order_item_type
23
- * @property int $order_id
24
- * @property string|null $product_id
25
- * @property string|null $variation_id
26
- * @property string|null $quantity
27
- * @property string|null $tax_class
28
- * @property string|null $line_subtotal
29
- * @property string|null $line_subtotal_tax
30
- * @property string|null $line_total
31
- * @property string|null $line_tax
32
- * @property \Corcel\WooCommerce\Model\Order $order
33
- * @property \Corcel\WooCommerce\Model\Product $product
17
+ * @property int $id
18
+ * @property string $name
19
+ * @property string $type
20
+ * @property int $order_item_id
21
+ * @property string $order_item_name
22
+ * @property string $order_item_type
23
+ * @property int $order_id
24
+ * @property string|null $product_id
25
+ * @property string|null $variation_id
26
+ * @property string|null $quantity
27
+ * @property string|null $tax_class
28
+ * @property string|null $line_subtotal
29
+ * @property string|null $line_subtotal_tax
30
+ * @property string|null $line_total
31
+ * @property string|null $line_tax
32
+ * @property \Corcel\WooCommerce\Model\Order $order
33
+ * @property \Corcel\WooCommerce\Model\Product $product
34
34
*/
35
35
class Item extends Model
36
36
{
37
- use HasFactory;
38
37
use Aliases;
38
+ use HasFactory;
39
39
use MetaFields;
40
40
41
41
/**
42
42
* The model aliases.
43
43
*
44
- * @var array<string, string>|array<string, array<string, string>>
44
+ * @var array<string, string>|array<string, array<string, string>>
45
45
*/
46
46
protected static $ aliases = [
47
- 'id ' => 'order_item_id ' ,
48
- 'name ' => 'order_item_name ' ,
49
- 'type ' => 'order_item_type ' ,
50
- 'product_id ' => ['meta ' => '_product_id ' ],
47
+ 'id ' => 'order_item_id ' ,
48
+ 'name ' => 'order_item_name ' ,
49
+ 'type ' => 'order_item_type ' ,
50
+ 'product_id ' => ['meta ' => '_product_id ' ],
51
51
'variation_id ' => ['meta ' => '_variation_id ' ],
52
52
];
53
53
54
54
/**
55
- * @inheritDoc
55
+ * { @inheritDoc}
56
56
*
57
- * @var array<int, string>
57
+ * @var array<int, string>
58
58
*/
59
59
protected $ appends = [
60
60
'quantity ' ,
@@ -66,23 +66,23 @@ class Item extends Model
66
66
];
67
67
68
68
/**
69
- * @inheritDoc
69
+ * { @inheritDoc}
70
70
*
71
- * @var string
71
+ * @var string
72
72
*/
73
73
protected $ table = 'woocommerce_order_items ' ;
74
74
75
75
/**
76
- * @inheritDoc
76
+ * { @inheritDoc}
77
77
*
78
- * @var string
78
+ * @var string
79
79
*/
80
80
protected $ primaryKey = 'order_item_id ' ;
81
81
82
82
/**
83
- * @inheritDoc
83
+ * { @inheritDoc}
84
84
*
85
- * @var bool
85
+ * @var bool
86
86
*/
87
87
public $ timestamps = false ;
88
88
@@ -98,8 +98,6 @@ protected static function newFactory()
98
98
99
99
/**
100
100
* Get the line subtotal attribute.
101
- *
102
- * @return string|null
103
101
*/
104
102
protected function getLineSubtotalAttribute (): ?string
105
103
{
@@ -110,8 +108,6 @@ protected function getLineSubtotalAttribute(): ?string
110
108
111
109
/**
112
110
* Get the line subtotal tax attribute.
113
- *
114
- * @return string|null
115
111
*/
116
112
protected function getLineSubtotalTaxAttribute (): ?string
117
113
{
@@ -122,8 +118,6 @@ protected function getLineSubtotalTaxAttribute(): ?string
122
118
123
119
/**
124
120
* Get the line tax attribute.
125
- *
126
- * @return string|null
127
121
*/
128
122
protected function getLineTaxAttribute (): ?string
129
123
{
@@ -134,8 +128,6 @@ protected function getLineTaxAttribute(): ?string
134
128
135
129
/**
136
130
* Get the line total attribute.
137
- *
138
- * @return string|null
139
131
*/
140
132
protected function getLineTotalAttribute (): ?string
141
133
{
@@ -146,8 +138,6 @@ protected function getLineTotalAttribute(): ?string
146
138
147
139
/**
148
140
* Get the quantity attribute.
149
- *
150
- * @return string|null
151
141
*/
152
142
protected function getQuantityAttribute (): ?string
153
143
{
@@ -158,8 +148,6 @@ protected function getQuantityAttribute(): ?string
158
148
159
149
/**
160
150
* Get the tax class attribute.
161
- *
162
- * @return string|null
163
151
*/
164
152
protected function getTaxClassAttribute (): ?string
165
153
{
@@ -169,9 +157,9 @@ protected function getTaxClassAttribute(): ?string
169
157
}
170
158
171
159
/**
172
- * @inheritDoc
160
+ * { @inheritDoc}
173
161
*
174
- * @return HasMany<ItemMeta>
162
+ * @return HasMany<ItemMeta>
175
163
*/
176
164
public function meta (): HasMany
177
165
{
@@ -181,7 +169,7 @@ public function meta(): HasMany
181
169
/**
182
170
* Get the related order.
183
171
*
184
- * @return BelongsTo<Order, Item>
172
+ * @return BelongsTo<Order, Item>
185
173
*/
186
174
public function order (): BelongsTo
187
175
{
@@ -191,7 +179,7 @@ public function order(): BelongsTo
191
179
/**
192
180
* Get the related product.
193
181
*
194
- * @return BelongsTo<Product, Item>
182
+ * @return BelongsTo<Product, Item>
195
183
*/
196
184
public function product (): BelongsTo
197
185
{
0 commit comments