File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33namespace Fhaculty \Graph ;
44
55use Fhaculty \Graph \Exporter \ExporterInterface ;
6- use Fhaculty \Graph \Exporter \Dot ;
6+ use Fhaculty \Graph \Exporter \TrivialGraphFormat ;
77use Fhaculty \Graph \Exception \BadMethodCallException ;
88use Fhaculty \Graph \Exception \UnexpectedValueException ;
99use Fhaculty \Graph \Exception \InvalidArgumentException ;
@@ -476,14 +476,14 @@ public function setExporter(ExporterInterface $exporter)
476476 * get current exporter to use to export graph to its output format
477477 *
478478 * If no other exporter has been set previously, this will lazy-load
479- * the (current default) Dot exporter.
479+ * the (current default) TrivialGraphFormat exporter.
480480 *
481481 * @return ExporterInterface
482482 */
483483 public function getExporter ()
484484 {
485485 if ($ this ->exporter === null ) {
486- $ this ->exporter = new Dot ();
486+ $ this ->exporter = new TrivialGraphFormat ();
487487 }
488488 return $ this ->exporter ;
489489 }
You can’t perform that action at this time.
0 commit comments