Skip to content

Commit 076c3b1

Browse files
committed
wip
1 parent 6b124c6 commit 076c3b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: app/Commands/AutocompleteCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class AutocompleteCommand extends Command
1414

1515
public function handle(): void
1616
{
17-
$code = base64_decode($this->argument('code'));
17+
$code = $this->argument('code');
1818

1919
if ($this->option('from-file')) {
2020
$code = file_get_contents(__DIR__ . '/../../tests/snippets/parse/' . $this->option('from-file') . '.php');

Diff for: app/Commands/DetectCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class DetectCommand extends Command
1414

1515
public function handle(): void
1616
{
17-
$code = base64_decode($this->argument('code'));
17+
$code = $this->argument('code');
1818

1919
if ($this->option('from-file')) {
2020
$code = file_get_contents(__DIR__ . '/../../tests/snippets/detect/' . $this->option('from-file') . '.php');

0 commit comments

Comments
 (0)