Skip to content

Commit

Permalink
bug #10199 fix ProcessPipes (nicolas-grekas)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.5-dev branch.

Discussion
----------

fix ProcessPipes

Commits
-------

076d417 fix ProcessPipes
  • Loading branch information
fabpot committed Feb 4, 2014
2 parents 22970e0 + 076d417 commit bcb5239
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Symfony/Component/Process/ProcessPipes.php
Expand Up @@ -120,8 +120,8 @@ public function getDescriptors()
array('file', '/dev/tty', 'w'),
array('file', '/dev/tty', 'w'),
);
} elseif ($this->ptyMode && Porcess::isPtySupported()) {
$descriptors = array(
} elseif ($this->ptyMode && Process::isPtySupported()) {
return array(
array('pty'),
array('pty'),
array('pty'),
Expand Down

0 comments on commit bcb5239

Please sign in to comment.