Skip to content

Commit c75c2f2

Browse files
committed
auto-update
1 parent ed3e9b1 commit c75c2f2

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

docs/tasks/Base.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if ($this->taskExec('phpunit .')->run()->wasSuccessful()) {
1919
?>
2020
```
2121

22-
* `background()` Executes command in background mode (asynchronously)
22+
#### *public static* instances* `background()` Executes command in background mode (asynchronously)
2323
* `timeout($timeout)` Stop command if it runs longer then $timeout in seconds
2424
* `idleTimeout($timeout)` Stops command if it does not output something for a while
2525
* `arg($arg)` Pass argument to executable
@@ -49,8 +49,8 @@ $this->taskExecStack()
4949
* `ExecStack stopOnFail(string)`
5050

5151
* `exec($command)`
52-
* `printed($arg)` Should command output be printed
5352
* `dir($dir)` changes working directory of command
53+
* `printed($arg)` Should command output be printed
5454

5555
## ParallelExec
5656

docs/tasks/Development.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@ $this->taskGitHubRelease('0.1.0')
105105
?>
106106
```
107107

108-
* `\Robo\Task\Vcs\GitHubRelease tag(string $tag)`
109-
* `\Robo\Task\Vcs\GitHubRelease name(string $name)`
110-
* `\Robo\Task\Vcs\GitHubRelease body(string $body)`
111-
* `\Robo\Task\Vcs\GitHubRelease draft(boolean $isDraft)`
112-
* `\Robo\Task\Vcs\GitHubRelease prerelease(boolean $isPrerelease)`
113-
* `\Robo\Task\Vcs\GitHubRelease comittish(string $branch)`
108+
* ` tag(string $tag)`
109+
* ` name(string $name)`
110+
* ` body(string $body)`
111+
* ` draft(boolean $isDraft)`
112+
* ` prerelease(boolean $isPrerelease)`
113+
* ` comittish(string $branch)`
114114

115115
* `askName()`
116116
* `askDescription()`
@@ -182,7 +182,7 @@ $this->taskPhpServer(8000)
182182
?>
183183
```
184184

185-
* `host($host)`
185+
#### *public static* instances* `host($host)`
186186
* `dir($path)` changes working directory of command
187187
* `background()` Executes command in background mode (asynchronously)
188188
* `timeout($timeout)` Stop command if it runs longer then $timeout in seconds

docs/tasks/Remote.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Per default, commands are combined with &&, unless stopOnFail is false.
8181
``` php
8282
<?php
8383

84-
$this->taskSsh('remote.example.com', 'user')
84+
$this->taskSshExec('remote.example.com', 'user')
8585
->exec('cd /var/www/html')
8686
->exec('ls -la')
8787
->exec('chmod g+x logs')
@@ -96,7 +96,7 @@ $gitTask = $this->taskGitStack()
9696
->checkout('master')
9797
->pull();
9898

99-
$this->taskSsh('remote.example.com')
99+
$this->taskSshExec('remote.example.com')
100100
->exec('cd /var/www/html/site')
101101
->exec($gitTask)
102102
->run();

docs/tasks/Vcs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ $this->taskGitStack()
3030
* `merge($branch)` Performs git merge
3131
* `checkout($branch)` Executes `git checkout` command
3232
* `exec($command)`
33-
* `printed($arg)` Should command output be printed
3433
* `dir($dir)` changes working directory of command
34+
* `printed($arg)` Should command output be printed
3535

3636
## SvnStack
3737

@@ -61,7 +61,7 @@ $this->taskSvnStack('username', 'password')
6161
* `commit($message, $options = null)` Executes `svn commit` command with a message
6262
* `checkout($branch)` Executes `svn checkout` command
6363
* `exec($command)`
64-
* `printed($arg)` Should command output be printed
6564
* `dir($dir)` changes working directory of command
65+
* `printed($arg)` Should command output be printed
6666

6767

0 commit comments

Comments
 (0)