feat: add event dispatcher destructor and implement subscriber interface with tests
Some checks failed
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 3m58s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Failing after 3m48s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 4m11s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Successful in 4m23s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 4m18s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 3m0s

This commit is contained in:
2025-11-30 14:53:41 -05:00
parent 721008bdfc
commit e69e3adebc
6 changed files with 236 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace Siteworxpro\Tests\ServiceProviders;
use Siteworxpro\App\Services\ServiceProviders\DispatcherServiceProvider;
class DispatcherServiceProviderTest extends AbstractServiceProvider
{
protected function getProviderClass(): string
{
return DispatcherServiceProvider::class;
}
}