Skip to content

Commit

Permalink
docs updated
Browse files Browse the repository at this point in the history
  • Loading branch information
DavertMik committed Jun 5, 2014
1 parent 54ece37 commit 92577bb
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions docs/tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ $this->taskBowerInstall('path/to/my/bower')

* `printed($arg)` Should command output be printed

* `arg($arg)`
* `args($args)`
* `option($option, $value = null)`
* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter



Expand Down Expand Up @@ -67,9 +67,9 @@ $this->taskBowerUpdate('path/to/my/bower')

* `printed($arg)` Should command output be printed

* `arg($arg)`
* `args($args)`
* `option($option, $value = null)`
* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter



Expand Down Expand Up @@ -126,9 +126,9 @@ $this->taskCodecept()

* `printed($arg)` Should command output be printed

* `arg($arg)`
* `args($args)`
* `option($option, $value = null)`
* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter


## ComposerInstall
Expand Down Expand Up @@ -173,9 +173,9 @@ $this->taskComposerInstall('path/to/my/composer.phar')

* `printed($arg)` Should command output be printed

* `arg($arg)`
* `args($args)`
* `option($option, $value = null)`
* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter
## ComposerUpdate


Expand Down Expand Up @@ -218,9 +218,9 @@ $this->taskComposerUpdate('path/to/my/composer.phar')

* `printed($arg)` Should command output be printed

* `arg($arg)`
* `args($args)`
* `option($option, $value = null)`
* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter
## ComposerDumpAutoload


Expand Down Expand Up @@ -271,9 +271,9 @@ $this->taskComposerDumpAutoload('path/to/my/composer.phar')

* `printed($arg)` Should command output be printed

* `arg($arg)`
* `args($args)`
* `option($option, $value = null)`
* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter

## Concat

Expand Down Expand Up @@ -904,9 +904,9 @@ $this->taskPHPUnit()

* `printed($arg)` Should command output be printed

* `arg($arg)`
* `args($args)`
* `option($option, $value = null)`
* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter

## PackPhar

Expand Down Expand Up @@ -1114,9 +1114,9 @@ if ('y' === $this->ask('Do you want to run (y/n)')) {

* `printed($arg)` Should command output be printed

* `arg($arg)`
* `args($args)`
* `option($option, $value = null)`
* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter



Expand Down Expand Up @@ -1182,9 +1182,9 @@ $this->taskSshExec('remote.example.com')

* `printed($arg)` Should command output be printed

* `arg($arg)`
* `args($args)`
* `option($option, $value = null)`
* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter

## SymfonyCommand

Expand Down

0 comments on commit 92577bb

Please sign in to comment.