13 lines
248 B
PHP
13 lines
248 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Webauthn\MetadataService\Event;
|
|
|
|
use Psr\EventDispatcher\EventDispatcherInterface;
|
|
|
|
interface CanDispatchEvents
|
|
{
|
|
public function setEventDispatcher(EventDispatcherInterface $eventDispatcher): void;
|
|
}
|