Skip to content

Commit 4a83739

Browse files
committed
Update code-style 💻
1 parent f204dc7 commit 4a83739

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

src/Console/Command.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
abstract class Command extends BaseCommand
1818
{
1919
use ConfirmableTrait;
20+
2021
use Isolatable;
22+
2123
use Optionable;
2224

2325
protected Processor|string $processor;

src/Jobs/ActionJob.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@
1717
class ActionJob implements ShouldQueue, ShouldBeUnique
1818
{
1919
use Dispatchable;
20+
2021
use InteractsWithQueue;
22+
2123
use Queueable;
24+
2225
use SerializesModels;
2326

2427
public function __construct(

src/ServiceProvider.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
class ServiceProvider extends BaseServiceProvider
1616
{
1717
use About;
18+
1819
use Anonymous;
1920

2021
public function boot(): void

tests/TestCase.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,13 @@
1717
abstract class TestCase extends BaseTestCase
1818
{
1919
use AssertDatabase;
20+
2021
use Database;
22+
2123
use Files;
24+
2225
use RefreshDatabase;
26+
2327
use Anonymous;
2428

2529
protected function setUp(): void

0 commit comments

Comments
 (0)