add languages files

This commit is contained in:
2026-05-06 08:49:57 +03:30
parent 264ed1ecb9
commit 05c54fb2d7
17 changed files with 734 additions and 5 deletions

View File

@@ -17,10 +17,6 @@ class AuthorizationService
{
$this->url = config('fib.authorization.url');
$this->channelName = '';
}
public function setInputParameters(): void
{
$this->inputParameters = [
'client_id' => config('fib.authorization.client_id'),
'client_secret' => config('fib.authorization.client_secret'),
@@ -53,7 +49,7 @@ class AuthorizationService
*/
public function sendRequest(): array
{
return Http::withHeaders(['Content-Type' => 'application/json'])
return Http::asForm()
->throw()
->withoutVerifying()
->post($this->url, $this->inputParameters)