Skip to content
Snippets Groups Projects

Issue #3309025: Document that Stage::require() does not need version numbers

Merged Issue #3309025: Document that Stage::require() does not need version numbers
All threads resolved!
All threads resolved!
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -309,10 +309,10 @@ class Stage {
@@ -309,10 +309,10 @@ class Stage {
*
*
* @param string[] $runtime
* @param string[] $runtime
* The packages to add as regular top-level dependencies, in the form
* The packages to add as regular top-level dependencies, in the form
* 'vendor/name:version'.
* 'vendor/name' or 'vendor/name:version'.
* @param string[] $dev
* @param string[] $dev
* (optional) The packages to add as dev dependencies, in the form
* (optional) The packages to add as dev dependencies, in the form
* 'vendor/name:version'. Defaults to an empty array.
* 'vendor/name' or 'vendor/name:version'. Defaults to an empty array.
*/
*/
public function require(array $runtime, array $dev = []): void {
public function require(array $runtime, array $dev = []): void {
$this->checkOwnership();
$this->checkOwnership();
Loading