for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace PersonalGalaxy\Calendar\Event;
use PersonalGalaxy\Calendar\Entity\Agenda\Identity;
final class AgendaWasDeleted
{
private $identity;
public function __construct(Identity $identity)
$this->identity = $identity;
}
public function identity(): Identity
return $this->identity;