Junto al '
faltante
Puede ejecutar las alteraciones directamente en la consulta:
UPDATE `events`
SET `free_spots` = `free_spots`-1,
`full_spots` = `full_spots`+1
WHERE `event_id` = :event_id
También debe vincular el marcador de posición :event_id$update_event_query_do->bindParam(':event_id', $event_id, PDO::PARAM_INT);