Files
Reservair/includes/Services/Forms/RsvFormElementRegistry.php
T

16 lines
378 B
PHP
Raw Normal View History

2026-06-11 19:03:29 +02:00
<?php
class RsvFormElementRegistry {
/** @var array<string, RsvFormElementHandler> */
public array $handlers = [];
public function register(string $type, RsvFormElementHandler $handler): void {
$this->handlers[$type] = $handler;
}
public function get(string $type): ?RsvFormElementHandler {
return $this->handlers[$type] ?? null;
}
}