Skip to content

Commit e16db98

Browse files
committed
fix: call to undefined method out
1 parent 934fd0a commit e16db98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

laravel/app/Http/Repository/ToolRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function hexToString($input)
5656
$hex = strtoupper($input);
5757
$hex = str_replace('\\X', '', $hex);
5858
if (!preg_match("/^[A-Fa-f0-9]+$/", $hex)) {
59-
return $this->out(1006);
59+
return '';
6060
}
6161
$str = "";
6262
for ($i = 0; $i < strlen($hex) - 1; $i += 2) {

0 commit comments

Comments
 (0)