4. AboutMe
• Former Symfony Core Team
• Live in Portland, Oregon
• VP of Engineering at Vacatia
• CTO at Pickathon Music Festival
• Likes long walks on the beach
59. class UpdateReservation implements ChainInterface
{
public string $reservationId;
public function __construct(
public array $updates,
) {}
public function next(object $handledMessage, mixed $handledResult): ?object
{
$this->reservationId = $handledResult['id'];
return $this;
}
}