11 lines
232 B
PHP
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;
|
|
}
|