I have this column in one of my entities:
#[ORM\Column(type: 'geometry', nullable: true, options: ['columnDefinition' => 'geometry(Point, 4326)'])]
public protected(set) ?WktSpatialData $coordinates = null;
A simple find ($this->em->getRepository(Adressdaten::class)->find(173040)) triggers this error.
It seems like the database is returning the geometry in Well-Known Binary Format.