mirror of
https://github.com/n3w/helpers-cli-input.git
synced 2025-12-19 12:43:23 +00:00
Passing the separator after the array is no longer supported
This commit is contained in:
parent
9622c98258
commit
c6fe64321e
2 changed files with 2 additions and 2 deletions
|
|
@ -72,6 +72,6 @@ class Argument extends Input\AbstractInputType
|
||||||
$second[$ii] = $secondaryLineLeadPadding.$second[$ii];
|
$second[$ii] = $secondaryLineLeadPadding.$second[$ii];
|
||||||
}
|
}
|
||||||
|
|
||||||
return $first.implode($second, PHP_EOL);
|
return $first.implode(PHP_EOL, $second);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -84,6 +84,6 @@ class LongOption extends Input\AbstractInputType
|
||||||
$second[$ii] = $secondaryLineLeadPadding.$second[$ii];
|
$second[$ii] = $secondaryLineLeadPadding.$second[$ii];
|
||||||
}
|
}
|
||||||
|
|
||||||
return $first.implode($second, PHP_EOL);
|
return $first.implode(PHP_EOL, $second);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue