Skip to content

Commit b880de2

Browse files
committed
Fix PHPCS errors in source files
1 parent cd85403 commit b880de2

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

src/GenerateDtoCommand.php

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,14 @@
1515

1616
class GenerateDtoCommand extends Command
1717
{
18-
protected $signature = 'dto:generate
19-
{--dry-run : Preview changes without writing files}';
20-
18+
/**
19+
* @var string
20+
*/
21+
protected $signature = 'dto:generate {--dry-run : Preview changes without writing files}';
22+
23+
/**
24+
* @var string
25+
*/
2126
protected $description = 'Generate DTO classes from configuration';
2227

2328
public function handle(): int

src/LaravelConsoleIo.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@
99

1010
class LaravelConsoleIo implements IoInterface
1111
{
12-
public function __construct(
13-
private Command $command,
14-
) {
12+
public function __construct(private Command $command)
13+
{
1514
}
1615

1716
/**

0 commit comments

Comments
 (0)