We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b124c6 commit 076c3b1Copy full SHA for 076c3b1
app/Commands/AutocompleteCommand.php
@@ -14,7 +14,7 @@ class AutocompleteCommand extends Command
14
15
public function handle(): void
16
{
17
- $code = base64_decode($this->argument('code'));
+ $code = $this->argument('code');
18
19
if ($this->option('from-file')) {
20
$code = file_get_contents(__DIR__ . '/../../tests/snippets/parse/' . $this->option('from-file') . '.php');
app/Commands/DetectCommand.php
@@ -14,7 +14,7 @@ class DetectCommand extends Command
$code = file_get_contents(__DIR__ . '/../../tests/snippets/detect/' . $this->option('from-file') . '.php');
0 commit comments