Teren-app/app/Services/DecisionEvents/Contracts/DecisionEventHandler.php
2025-10-22 23:20:04 +02:00

11 lines
232 B
PHP

<?php
namespace App\Services\DecisionEvents\Contracts;
use App\Services\DecisionEvents\DecisionEventContext;
interface DecisionEventHandler
{
public function handle(DecisionEventContext $context, array $config = []): void;
}