Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 076c3b1

Browse filesBrowse files
committed
wip
1 parent 6b124c6 commit 076c3b1
Copy full SHA for 076c3b1

File tree

2 files changed

+2
-2
lines changed
Filter options

2 files changed

+2
-2
lines changed

‎app/Commands/AutocompleteCommand.php

Copy file name to clipboardExpand all lines: 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');

‎app/Commands/DetectCommand.php

Copy file name to clipboardExpand all lines: 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.