Skip to content
This repository has been archived by the owner on Oct 3, 2021. It is now read-only.

Commit

Permalink
fix phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Zogg committed Sep 17, 2016
1 parent 6093959 commit 06d24f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -94,7 +94,7 @@ $executor->execute(
null,
function (array $processes) use (&$outputs, &$errorOutputs) {
foreach ($processes as $process) {
/** @var Process $process $commandLine */
/** @var Process $process */
$commandLine = $process->getCommandLine();
if ('' !== $output = $process->getIncrementalOutput()) {
if (!isset($outputs[$commandLine])) {
Expand Down
2 changes: 1 addition & 1 deletion tests/ProcessesExecutorTest.php
Expand Up @@ -157,7 +157,7 @@ public function testExecuteWithTwentyProcessesAndIterationCallback()
function (array $processes) use (&$outputs, &$errorOutputs) {
self::assertLessThanOrEqual(8, count($processes));
foreach ($processes as $process) {
/** @var Process $process $commandLine */
/** @var Process $process */
$commandLine = $process->getCommandLine();
if ('' !== $output = $process->getIncrementalOutput()) {
if (!isset($outputs[$commandLine])) {
Expand Down

0 comments on commit 06d24f6

Please sign in to comment.