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 a2526d7 commit 60bc871Copy full SHA for 60bc871
src/Console/Commands/ObfuscateCommand.php
@@ -84,6 +84,12 @@ public function handle(): int
84
'enable_backup' => $this->option('backup') ?? false,
85
'production_ready' => $this->option('production-ready') ?? false,
86
];
87
+
88
+ // Debug output
89
+ if ($this->option('production-ready')) {
90
+ $this->info('✓ Production-ready mode is ENABLED');
91
+ $this->info('Options array: ' . json_encode($options));
92
+ }
93
94
// Override source paths if provided
95
if ($this->option('source')) {
0 commit comments