edges = $edges; } /** * @return AttackPathEdge[] */ public function getEdges() { return $this->edges; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param AttackPathNode[] */ public function setPathNodes($pathNodes) { $this->pathNodes = $pathNodes; } /** * @return AttackPathNode[] */ public function getPathNodes() { return $this->pathNodes; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AttackPath::class, 'Google_Service_SecurityCommandCenter_AttackPath');