for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Arp\EventDispatcher;
use Psr\EventDispatcher\ListenerProviderInterface;
final class ImmutableEventDispatcher extends AbstractEventDispatcher
{
public function __construct(private readonly ListenerProviderInterface $listenerProvider)
}
protected function getListenerProvider(): ListenerProviderInterface
return $this->listenerProvider;