You've already forked Php-Template
All checks were successful
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 2m59s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 2m55s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 3m9s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 3m5s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Successful in 3m51s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 3m11s
Reviewed-on: #22 Co-authored-by: Ron Rise <ron@siteworxpro.com> Co-committed-by: Ron Rise <ron@siteworxpro.com>
22 lines
362 B
PHP
22 lines
362 B
PHP
<?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;
|
|
}
|
|
}
|