arrows[] = $arrow; return $this; } public function writeTo(WriterInterface $writer) { $writer->write("set namespaceSeparator .\n"); $this ->writeNodesTo($writer) ->writeChildrenTo($writer) ->writeArrowsTo($writer); return $this; } protected function writeArrowsTo(WriterInterface $writer) { foreach ($this->arrows as $arrow) { $arrow->writeTo($writer); } return $this; } protected function getNamespacePrefix() { return ''; } public function getNodeLabel($className) { return $className; } }