We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd85403 commit b880de2Copy full SHA for b880de2
src/GenerateDtoCommand.php
@@ -15,9 +15,14 @@
15
16
class GenerateDtoCommand extends Command
17
{
18
- protected $signature = 'dto:generate
19
- {--dry-run : Preview changes without writing files}';
20
-
+ /**
+ * @var string
+ */
21
+ protected $signature = 'dto:generate {--dry-run : Preview changes without writing files}';
22
+
23
24
25
26
protected $description = 'Generate DTO classes from configuration';
27
28
public function handle(): int
src/LaravelConsoleIo.php
@@ -9,9 +9,8 @@
9
10
class LaravelConsoleIo implements IoInterface
11
12
- public function __construct(
13
- private Command $command,
14
- ) {
+ public function __construct(private Command $command)
+ {
}
/**
0 commit comments