minor #17426 [2.7][Process] Fix typo, no arguments needed anymore (romainneutron)

This PR was merged into the 2.7 branch.

Discussion
----------

[2.7][Process] Fix typo, no arguments needed anymore

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | N/A
| License       | MIT

Commits
-------

7f89158 [Process] Fix typo, no arguments needed anymore
This commit is contained in:
Fabien Potencier 2016-01-19 08:29:04 +01:00
commit 18604e25f3
1 changed files with 1 additions and 1 deletions

View File

@ -1232,7 +1232,7 @@ class Process
$this->processPipes = UnixPipes::create($this, $this->input);
}
return $this->processPipes->getDescriptors($this->outputDisabled);
return $this->processPipes->getDescriptors();
}
/**