You've already forked Php-Template
All checks were successful
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 1m55s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 1m56s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 2m10s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 1m56s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Successful in 2m45s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 53s
Reviewed-on: #6 Co-authored-by: Ron Rise <ron@siteworxpro.com> Co-committed-by: Ron Rise <ron@siteworxpro.com>
22 lines
355 B
PHP
22 lines
355 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Siteworxpro\Tests\Facades;
|
|
|
|
use Predis\Client;
|
|
use Siteworxpro\App\Services\Facades\Redis;
|
|
|
|
class RedisTest extends AbstractFacade
|
|
{
|
|
protected function getFacadeClass(): string
|
|
{
|
|
return Redis::class;
|
|
}
|
|
|
|
protected function getConcrete(): string
|
|
{
|
|
return Client::class;
|
|
}
|
|
}
|