You've already forked Php-Template
All checks were successful
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 2m40s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 2m42s
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 2m53s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Successful in 2m55s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 2m42s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 1m24s
16 lines
323 B
PHP
16 lines
323 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Siteworxpro\Tests\ServiceProviders;
|
|
|
|
use Siteworxpro\App\Services\ServiceProviders\CommandBusProvider;
|
|
|
|
class CommandBusServiceProviderTest extends AbstractServiceProvider
|
|
{
|
|
protected function getProviderClass(): string
|
|
{
|
|
return CommandBusProvider::class;
|
|
}
|
|
}
|