@@ -54,9 +54,6 @@ $this->taskComposerValidate()->run();
5454* ` buildCommand() `
5555
5656 Copy class fields into command options as directed.
57- * ` setOutput($output) `
58-
59- * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
6057* ` setProcessInput($input) `
6158
6259 * ` param resource|string ` $input
@@ -81,6 +78,9 @@ $this->taskComposerValidate()->run();
8178* ` optionList($option, $value = null, $separator = null) `
8279
8380 * ` param string ` $option
81+ * ` setOutput($output) `
82+
83+ * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
8484
8585## Config
8686
@@ -154,9 +154,6 @@ $this->taskComposerConfig()->set('bin-dir', 'bin/')->run();
154154* ` buildCommand() `
155155
156156 Copy class fields into command options as directed.
157- * ` setOutput($output) `
158-
159- * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
160157* ` setProcessInput($input) `
161158
162159 * ` param resource|string ` $input
@@ -181,6 +178,9 @@ $this->taskComposerConfig()->set('bin-dir', 'bin/')->run();
181178* ` optionList($option, $value = null, $separator = null) `
182179
183180 * ` param string ` $option
181+ * ` setOutput($output) `
182+
183+ * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
184184
185185## CreateProject
186186
@@ -257,9 +257,6 @@ $this->taskComposerCreateProject()->source('foo/bar')->target('myBar')->run();
257257* ` workingDir($dir) `
258258
259259 * ` param string ` $dir
260- * ` setOutput($output) `
261-
262- * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
263260* ` setProcessInput($input) `
264261
265262 * ` param resource|string ` $input
@@ -284,6 +281,9 @@ $this->taskComposerCreateProject()->source('foo/bar')->target('myBar')->run();
284281* ` optionList($option, $value = null, $separator = null) `
285282
286283 * ` param string ` $option
284+ * ` setOutput($output) `
285+
286+ * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
287287
288288## DumpAutoload
289289
@@ -358,9 +358,6 @@ $this->taskComposerDumpAutoload('path/to/my/composer.phar')
358358* ` buildCommand() `
359359
360360 Copy class fields into command options as directed.
361- * ` setOutput($output) `
362-
363- * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
364361* ` setProcessInput($input) `
365362
366363 * ` param resource|string ` $input
@@ -385,6 +382,9 @@ $this->taskComposerDumpAutoload('path/to/my/composer.phar')
385382* ` optionList($option, $value = null, $separator = null) `
386383
387384 * ` param string ` $option
385+ * ` setOutput($output) `
386+
387+ * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
388388
389389## Init
390390
@@ -467,9 +467,6 @@ $this->taskComposerInit()->run();
467467* ` buildCommand() `
468468
469469 Copy class fields into command options as directed.
470- * ` setOutput($output) `
471-
472- * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
473470* ` setProcessInput($input) `
474471
475472 * ` param resource|string ` $input
@@ -494,6 +491,9 @@ $this->taskComposerInit()->run();
494491* ` optionList($option, $value = null, $separator = null) `
495492
496493 * ` param string ` $option
494+ * ` setOutput($output) `
495+
496+ * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
497497
498498## Install
499499
@@ -562,9 +562,6 @@ $this->taskComposerInstall('path/to/my/composer.phar')
562562* ` buildCommand() `
563563
564564 Copy class fields into command options as directed.
565- * ` setOutput($output) `
566-
567- * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
568565* ` setProcessInput($input) `
569566
570567 * ` param resource|string ` $input
@@ -589,6 +586,9 @@ $this->taskComposerInstall('path/to/my/composer.phar')
589586* ` optionList($option, $value = null, $separator = null) `
590587
591588 * ` param string ` $option
589+ * ` setOutput($output) `
590+
591+ * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
592592
593593## Remove
594594
@@ -602,6 +602,9 @@ $this->taskComposerRemove()->run();
602602?>
603603```
604604
605+ * ` dependency($project) `
606+
607+ * ` param array|string ` $project
605608* ` dev($dev = null) `
606609
607610 * ` param bool ` $dev
@@ -656,9 +659,6 @@ $this->taskComposerRemove()->run();
656659* ` buildCommand() `
657660
658661 Copy class fields into command options as directed.
659- * ` setOutput($output) `
660-
661- * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
662662* ` setProcessInput($input) `
663663
664664 * ` param resource|string ` $input
@@ -683,6 +683,9 @@ $this->taskComposerRemove()->run();
683683* ` optionList($option, $value = null, $separator = null) `
684684
685685 * ` param string ` $option
686+ * ` setOutput($output) `
687+
688+ * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
686689
687690## RequireDependency
688691
@@ -703,6 +706,8 @@ $this->taskComposerRequire()->dependency('foo/bar', '^.2.4.8')->run();
703706
704707 * ` param bool ` $noSuggest
705708* ` noUpdate() `
709+
710+ * ` return $this `
706711* ` preferDist($preferDist = null) `
707712
708713 * ` param bool ` $preferDist
@@ -745,9 +750,6 @@ $this->taskComposerRequire()->dependency('foo/bar', '^.2.4.8')->run();
745750* ` buildCommand() `
746751
747752 Copy class fields into command options as directed.
748- * ` setOutput($output) `
749-
750- * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
751753* ` setProcessInput($input) `
752754
753755 * ` param resource|string ` $input
@@ -772,6 +774,9 @@ $this->taskComposerRequire()->dependency('foo/bar', '^.2.4.8')->run();
772774* ` optionList($option, $value = null, $separator = null) `
773775
774776 * ` param string ` $option
777+ * ` setOutput($output) `
778+
779+ * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
775780
776781
777782## Update
@@ -841,9 +846,6 @@ $this->taskComposerUpdate('path/to/my/composer.phar')
841846* ` buildCommand() `
842847
843848 Copy class fields into command options as directed.
844- * ` setOutput($output) `
845-
846- * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
847849* ` setProcessInput($input) `
848850
849851 * ` param resource|string ` $input
@@ -868,6 +870,9 @@ $this->taskComposerUpdate('path/to/my/composer.phar')
868870* ` optionList($option, $value = null, $separator = null) `
869871
870872 * ` param string ` $option
873+ * ` setOutput($output) `
874+
875+ * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
871876
872877## Validate
873878
@@ -938,9 +943,6 @@ $this->taskComposerValidate()->run();
938943* ` buildCommand() `
939944
940945 Copy class fields into command options as directed.
941- * ` setOutput($output) `
942-
943- * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
944946* ` setProcessInput($input) `
945947
946948 * ` param resource|string ` $input
@@ -965,4 +967,7 @@ $this->taskComposerValidate()->run();
965967* ` optionList($option, $value = null, $separator = null) `
966968
967969 * ` param string ` $option
970+ * ` setOutput($output) `
971+
972+ * ` param \Symfony\Component\Console\Output\OutputInterface ` $output
968973
0 commit comments