feat: implement Guzzle facade and update JwtMiddleware to use it
All checks were successful
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 4m11s
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 4m22s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 4m23s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Successful in 4m41s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 4m26s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 3m12s

This commit is contained in:
2025-11-25 11:41:55 -05:00
parent a9a5cb6216
commit c5b579fdb0
5 changed files with 202 additions and 22 deletions

View File

@@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
namespace Siteworxpro\Tests\Facades;
use GuzzleHttp\Client;
use Siteworxpro\App\Services\Facades\Guzzle;
class GuzzleTest extends AbstractFacade
{
protected function getFacadeClass(): string
{
return Guzzle::class;
}
protected function getConcrete(): string
{
return Client::class;
}
}