edgeRepo->insert($edge); return $edge; } public function update(string $from, EdgeCollection $edges): void { $this->edgeRepo->update($from, $edges); } public function findAll(): EdgeCollection { return $this->edgeRepo->findAll(); } public function remove(Edge $edge): void { $this->edgeRepo->remove($edge); } }