Parameter fix

This commit is contained in:
Dennis Eichhorn 2016-03-15 22:06:15 +01:00
parent d57c626eaf
commit b27154dc19

View File

@ -52,7 +52,7 @@ class Graph
*/
public function __construct()
{
$this->edges = new MultiMap(KeyType::STRICT, OrderType::LOOSE);
$this->edges = new MultiMap(KeyType::MULTIPLE, OrderType::LOOSE);
}
/**