8000 [Process] Remove deprecated methods · symfony/symfony@e2334d9 · GitHub
[go: up one dir, main page]

Skip to content

Commit e2334d9

Browse files
committed
[Process] Remove deprecated methods
1 parent 1277c49 commit e2334d9

File tree

1 file changed

+0
-31
lines changed

1 file changed

+0
-31
lines changed

src/Symfony/Component/Process/Process.php

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1047,19 +1047,6 @@ public function setEnv(array $env)
10471047
return $this;
10481048
}
10491049

1050-
/**
1051-
* Gets the contents of STDIN.
1052-
*
1053-
* @return string|null The current contents
1054-
*
1055-
* @deprecated Deprecated since version 2.5, to be removed in 3.0.
1056-
* This method is deprecated in favor of getInput.
1057-
*/
1058-
public function getStdin()
1059-
{
1060-
return $this->getInput();
1061-
}
1062-
10631050
/**
10641051
* Gets the Process input.
10651052
*
@@ -1070,24 +1057,6 @@ public function getInput()
10701057
return $this->input;
10711058
}
10721059

1073-
/**
1074-
* Sets the contents of STDIN.
1075-
*
1076-
* @param string|null $stdin The new contents
1077-
*
1078-
* @return self The current Process instance
1079-
*
1080-
* @deprecated Deprecated since version 2.5, to be removed in 3.0.
1081-
* This method is deprecated in favor of setInput.
1082-
*
1083-
* @throws LogicException In case the process is running
1084-
* @throws InvalidArgumentException In case the argument is invalid
1085-
*/
1086-
public function setStdin($stdin)
1087-
{
1088-
return $this->setInput($stdin);
1089-
}
1090-
10911060
/**
10921061
* Sets the input.
10931062
*

0 commit comments

Comments
 (0)
0