for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yiisoft\EventDispatcher\Tests\Event;
class Event
{
private $registered = [];
public function register(string $name): void
$this->registered[] = $name;
}
public function registered(): array
return $this->registered;