Skip to content

Commit 29a9696

Browse files
committed
chore: fix laravel pint and phpstan errors
1 parent 555f879 commit 29a9696

27 files changed

+330
-472
lines changed

src/Model/Builder/OrderBuilder.php

+1-17
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ class OrderBuilder extends PostBuilder
1010
{
1111
/**
1212
* Scope a query to only cancelled orders.
13-
*
14-
* @return \Corcel\Model\Builder\PostBuilder
1513
*/
1614
public function cancelled(): PostBuilder
1715
{
@@ -20,8 +18,6 @@ public function cancelled(): PostBuilder
2018

2119
/**
2220
* Scope a query to only completed orders.
23-
*
24-
* @return \Corcel\Model\Builder\PostBuilder
2521
*/
2622
public function completed(): PostBuilder
2723
{
@@ -30,8 +26,6 @@ public function completed(): PostBuilder
3026

3127
/**
3228
* Scope a query to only failed orders.
33-
*
34-
* @return \Corcel\Model\Builder\PostBuilder
3529
*/
3630
public function failed(): PostBuilder
3731
{
@@ -40,8 +34,6 @@ public function failed(): PostBuilder
4034

4135
/**
4236
* Scope a query to only on hold orders.
43-
*
44-
* @return \Corcel\Model\Builder\PostBuilder
4537
*/
4638
public function onHold(): PostBuilder
4739
{
@@ -50,8 +42,6 @@ public function onHold(): PostBuilder
5042

5143
/**
5244
* Scope a query to only pending orders.
53-
*
54-
* @return \Corcel\Model\Builder\PostBuilder
5545
*/
5646
public function pending(): PostBuilder
5747
{
@@ -60,8 +50,6 @@ public function pending(): PostBuilder
6050

6151
/**
6252
* Scope a query to only processing orders.
63-
*
64-
* @return \Corcel\Model\Builder\PostBuilder
6553
*/
6654
public function processing(): PostBuilder
6755
{
@@ -70,8 +58,6 @@ public function processing(): PostBuilder
7058

7159
/**
7260
* Scope a query to only refunded orders.
73-
*
74-
* @return \Corcel\Model\Builder\PostBuilder
7561
*/
7662
public function refunded(): PostBuilder
7763
{
@@ -80,12 +66,10 @@ public function refunded(): PostBuilder
8066

8167
/**
8268
* Scope a query to orders with given status.
83-
*
84-
* @return \Corcel\Model\Builder\PostBuilder
8569
*/
8670
public function status($status): PostBuilder
8771
{
88-
$status = 'wc-' === substr($status, 0, 3) ? substr($status, 3) : $status;
72+
$status = substr($status, 0, 3) === 'wc-' ? substr($status, 3) : $status;
8973

9074
$builtin = [
9175
'cancelled',

src/Model/Customer.php

+6-8
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@
1212
use Illuminate\Database\Eloquent\Relations\HasMany;
1313

1414
/**
15-
* @property int $order_count
16-
* @property Collection $orders
15+
* @property int $order_count
16+
* @property Collection $orders
1717
*/
1818
class Customer extends User
1919
{
20-
use HasFactory;
2120
use AddressesTrait;
21+
use HasFactory;
2222

2323
/**
2424
* @use HasRelationsThroughMeta<\Illuminate\Database\Eloquent\Model>
2525
*/
2626
use HasRelationsThroughMeta;
2727

2828
/**
29-
* @inheritDoc
29+
* {@inheritDoc}
3030
*
31-
* @var array<string>
31+
* @var array<string>
3232
*/
3333
protected $appends = [
3434
'order_count',
@@ -46,8 +46,6 @@ protected static function newFactory()
4646

4747
/**
4848
* Get order count attribute.
49-
*
50-
* @return int
5149
*/
5250
protected function getOrderCountAttribute(): int
5351
{
@@ -59,7 +57,7 @@ protected function getOrderCountAttribute(): int
5957
/**
6058
* Get the related orders.
6159
*
62-
* @return HasMany<\Illuminate\Database\Eloquent\Model>
60+
* @return HasMany<\Illuminate\Database\Eloquent\Model>
6361
*/
6462
public function orders(): HasMany
6563
{

src/Model/Item.php

+35-47
Original file line numberDiff line numberDiff line change
@@ -14,47 +14,47 @@
1414
use Illuminate\Database\Eloquent\Relations\HasMany;
1515

1616
/**
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
3434
*/
3535
class Item extends Model
3636
{
37-
use HasFactory;
3837
use Aliases;
38+
use HasFactory;
3939
use MetaFields;
4040

4141
/**
4242
* The model aliases.
4343
*
44-
* @var array<string, string>|array<string, array<string, string>>
44+
* @var array<string, string>|array<string, array<string, string>>
4545
*/
4646
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'],
5151
'variation_id' => ['meta' => '_variation_id'],
5252
];
5353

5454
/**
55-
* @inheritDoc
55+
* {@inheritDoc}
5656
*
57-
* @var array<int, string>
57+
* @var array<int, string>
5858
*/
5959
protected $appends = [
6060
'quantity',
@@ -66,23 +66,23 @@ class Item extends Model
6666
];
6767

6868
/**
69-
* @inheritDoc
69+
* {@inheritDoc}
7070
*
71-
* @var string
71+
* @var string
7272
*/
7373
protected $table = 'woocommerce_order_items';
7474

7575
/**
76-
* @inheritDoc
76+
* {@inheritDoc}
7777
*
78-
* @var string
78+
* @var string
7979
*/
8080
protected $primaryKey = 'order_item_id';
8181

8282
/**
83-
* @inheritDoc
83+
* {@inheritDoc}
8484
*
85-
* @var bool
85+
* @var bool
8686
*/
8787
public $timestamps = false;
8888

@@ -98,8 +98,6 @@ protected static function newFactory()
9898

9999
/**
100100
* Get the line subtotal attribute.
101-
*
102-
* @return string|null
103101
*/
104102
protected function getLineSubtotalAttribute(): ?string
105103
{
@@ -110,8 +108,6 @@ protected function getLineSubtotalAttribute(): ?string
110108

111109
/**
112110
* Get the line subtotal tax attribute.
113-
*
114-
* @return string|null
115111
*/
116112
protected function getLineSubtotalTaxAttribute(): ?string
117113
{
@@ -122,8 +118,6 @@ protected function getLineSubtotalTaxAttribute(): ?string
122118

123119
/**
124120
* Get the line tax attribute.
125-
*
126-
* @return string|null
127121
*/
128122
protected function getLineTaxAttribute(): ?string
129123
{
@@ -134,8 +128,6 @@ protected function getLineTaxAttribute(): ?string
134128

135129
/**
136130
* Get the line total attribute.
137-
*
138-
* @return string|null
139131
*/
140132
protected function getLineTotalAttribute(): ?string
141133
{
@@ -146,8 +138,6 @@ protected function getLineTotalAttribute(): ?string
146138

147139
/**
148140
* Get the quantity attribute.
149-
*
150-
* @return string|null
151141
*/
152142
protected function getQuantityAttribute(): ?string
153143
{
@@ -158,8 +148,6 @@ protected function getQuantityAttribute(): ?string
158148

159149
/**
160150
* Get the tax class attribute.
161-
*
162-
* @return string|null
163151
*/
164152
protected function getTaxClassAttribute(): ?string
165153
{
@@ -169,9 +157,9 @@ protected function getTaxClassAttribute(): ?string
169157
}
170158

171159
/**
172-
* @inheritDoc
160+
* {@inheritDoc}
173161
*
174-
* @return HasMany<ItemMeta>
162+
* @return HasMany<ItemMeta>
175163
*/
176164
public function meta(): HasMany
177165
{
@@ -181,7 +169,7 @@ public function meta(): HasMany
181169
/**
182170
* Get the related order.
183171
*
184-
* @return BelongsTo<Order, Item>
172+
* @return BelongsTo<Order, Item>
185173
*/
186174
public function order(): BelongsTo
187175
{
@@ -191,7 +179,7 @@ public function order(): BelongsTo
191179
/**
192180
* Get the related product.
193181
*
194-
* @return BelongsTo<Product, Item>
182+
* @return BelongsTo<Product, Item>
195183
*/
196184
public function product(): BelongsTo
197185
{

src/Model/Meta/ItemMeta.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
class ItemMeta extends PostMeta
1010
{
1111
/**
12-
* @inheritDoc
12+
* {@inheritDoc}
1313
*
14-
* @var string
14+
* @var string
1515
*/
1616
protected $table = 'woocommerce_order_itemmeta';
1717

1818
/**
19-
* @inheritDoc
19+
* {@inheritDoc}
2020
*
21-
* @var string[]
21+
* @var string[]
2222
*/
2323
protected $fillable = [
2424
'order_item_id',

0 commit comments

Comments
 (0)