Skip to content

Commit 5d1025d

Browse files
authored
Merge pull request #39 from NyonCode/0.0.6
Minor improvements
2 parents 0ee5504 + 836c837 commit 5d1025d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

app/Livewire/Customer/AgentTerminal.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -285,14 +285,12 @@ public function close(): void
285285
* Parse terminal output.
286286
*
287287
* @param string|array<string> $output
288-
*
289-
* @return mixed
290288
*/
291-
public function parseTerminalOutput(string|array $output): mixed
289+
public function parseTerminalOutput(string|array $output)
292290
{
293291
var_dump($output);
294292

295-
return json_decode($output, true);
293+
var_dump(json_decode($output, true));
296294
}
297295

298296
/**

0 commit comments

Comments
 (0)