Skip to content

Commit f5481b2

Browse files
committed
[PHPDoc] Fix some union type cases
1 parent 7e950b6 commit f5481b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Process.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ class Process implements \IteratorAggregate
132132
* @param array $command The command to run and its arguments listed as separate entries
133133
* @param string|null $cwd The working directory or null to use the working dir of the current PHP process
134134
* @param array|null $env The environment variables or null to use the same environment as the current PHP process
135-
* @param mixed|null $input The input as stream resource, scalar or \Traversable, or null for no input
135+
* @param mixed $input The input as stream resource, scalar or \Traversable, or null for no input
136136
* @param int|float|null $timeout The timeout in seconds or null to disable
137137
*
138138
* @throws LogicException When proc_open is not installed
@@ -183,7 +183,7 @@ public function __construct($command, string $cwd = null, array $env = null, $in
183183
* @param string $command The command line to pass to the shell of the OS
184184
* @param string|null $cwd The working directory or null to use the working dir of the current PHP process
185185
* @param array|null $env The environment variables or null to use the same environment as the current PHP process
186-
* @param mixed|null $input The input as stream resource, scalar or \Traversable, or null for no input
186+
* @param mixed $input The input as stream resource, scalar or \Traversable, or null for no input
187187
* @param int|float|null $timeout The timeout in seconds or null to disable
188188
*
189189
* @return static

0 commit comments

Comments
 (0)