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