Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

[3.0][Process] Remove deprecated methods #12697

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 4, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[Process] Remove deprecated methods
  • Loading branch information
romainneutron committed Nov 29, 2014
commit e2334d9624c6ef1e9fcecd81198c5a46272fdb02
31 changes: 0 additions & 31 deletions 31 src/Symfony/Component/Process/Process.php
Original file line number Diff line number Diff line change
Expand Up @@ -1047,19 +1047,6 @@ public function setEnv(array $env)
return $this;
}

/**
* Gets the contents of STDIN.
*
* @return string|null The current contents
*
* @deprecated Deprecated since version 2.5, to be removed in 3.0.
* This method is deprecated in favor of getInput.
*/
public function getStdin()
{
return $this->getInput();
}

/**
* Gets the Process input.
*
Expand All @@ -1070,24 +1057,6 @@ public function getInput()
return $this->input;
}

/**
* Sets the contents of STDIN.
*
* @param string|null $stdin The new contents
*
* @return self The current Process instance
*
* @deprecated Deprecated since version 2.5, to be removed in 3.0.
* This method is deprecated in favor of setInput.
*
* @throws LogicException In case the process is running
* @throws InvalidArgumentException In case the argument is invalid
*/
public function setStdin($stdin)
{
return $this->setInput($stdin);
}

/**
* Sets the input.
*
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.