Fatal error: Cannot redeclare function Ds\seq() in .../vendor/php-ds/php-ds/src/functions.php on line 7
Function declarations should be wrapped with if (!function_exists(...)):
if (!function_exists('Ds\\seq')) {
function seq(iterable $values = []): Seq
{
return new Seq($values);
}
}
Function declarations should be wrapped with
if (!function_exists(...)):