You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While working on some issues trying to generate a top down UML I ran into
$graphviz = newGraphViz($graph);
$graphviz->setFormat('svg');
// This is broken$graphviz->setLayout( GraphViz::LAYOUT_GRAPH, 'rankdir', 'TB');
which calls
$this->graph->setLayout($layout, $value);
giving
PHP Fatal error: Call to undefined method Fhaculty\Graph\Graph::setLayout() in /.../vendor/clue/graph/lib/Fhaculty/Graph/GraphViz.php on line 179
Thanks for notifying, makes sense to track this and add it to the CHANGELOG individually.
This will be addressed with PR #40. GraphViz::setLayout() will be dropped completely and the Graph::getLayout()->setAttribute($name, $value) will yield the expected results.
While working on some issues trying to generate a top down UML I ran into
which calls
giving
PHP Fatal error: Call to undefined method Fhaculty\Graph\Graph::setLayout() in /.../vendor/clue/graph/lib/Fhaculty/Graph/GraphViz.php on line 179
composer/installed.json
I tried to understand but failed.
The text was updated successfully, but these errors were encountered: