BF wrong naming

This commit is contained in:
Fabian Wagner 2025-11-20 16:10:01 +01:00
parent d04c7186be
commit c5ee4d3080
2 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Services; namespace Blax\Workkit\Services;
use JsonException; use JsonException;
@ -27,7 +27,7 @@ class IncompleteJsonService
} }
$this->onExtraToken = function ($text, $data, $reminding) { $this->onExtraToken = function ($text, $data, $reminding) {
echo 'Parsed JSON with extra tokens: '.json_encode(['text' => $text, 'data' => $data, 'reminding' => $reminding]); echo 'Parsed JSON with extra tokens: ' . json_encode(['text' => $text, 'data' => $data, 'reminding' => $reminding]);
}; };
} }

View File

@ -2,7 +2,6 @@
namespace Blax\Workkit\Services; namespace Blax\Workkit\Services;
use App\Services\IncompleteJsonService;
use Illuminate\Support\Facades\Http; use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\Log;