for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace hanneskod\readmetester\Event;
class BaseEvent
{
private string $message;
public function __construct(string $message)
$this->message = $message;
}
public function getMessage(): string
return $this->message;