Skip to content

Commit 3eff1f6

Browse files
daniel-cintragithub-actions[bot]
authored andcommitted
Fix styling
1 parent dfd537a commit 3eff1f6

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

stubs/tests/Feature/Support/SearchableTraitTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
use Modules\Support\Traits\Searchable;
4-
use Illuminate\Database\Eloquent\Model;
54
use Modules\User\Models\User;
65

76
uses(Searchable::class);

stubs/tests/Feature/Support/UpdateOrderTraitTest.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
use Modules\Support\Traits\UpdateOrder;
43
use Illuminate\Database\Eloquent\Model;
5-
use Illuminate\Support\Facades\Schema;
64
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
6+
use Modules\Support\Traits\UpdateOrder;
77

88
uses(UpdateOrder::class);
99

@@ -25,7 +25,9 @@
2525
$model = new class extends Model
2626
{
2727
use UpdateOrder;
28+
2829
protected $table = 'items';
30+
2931
protected $guarded = [];
3032
};
3133

@@ -34,7 +36,7 @@
3436

3537
$newOrder = [
3638
['id' => $item2->id],
37-
['id' => $item1->id]
39+
['id' => $item1->id],
3840
];
3941

4042
$model->updateOrder($newOrder);

0 commit comments

Comments
 (0)