Esta función no tiene parámetros.
An array containing all the values in the same order as the pair.
Ejemplo #1 Ds\Pair::toArray() example
<?php
$pair = new \Ds\Pair("a", 1);
var_dump($pair->toArray());
?>
El resultado del ejemplo sería algo similar a:
array(2) { ["key"]=> string(1) "a" ["value"]=> int(1) }