Skip to content

Commit b21f4f3

Browse files
authored
Update core.stub
1 parent 09a1b58 commit b21f4f3

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

stubs/core.stub

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,3 +328,17 @@ function ltrim(string $string, string $characters = " \n\r\t\v\x00"): string {}
328328
* @return ($string is lowercase-string ? lowercase-string : string)
329329
*/
330330
function rtrim(string $string, string $characters = " \n\r\t\v\x00"): string {}
331+
332+
/**
333+
* @param array|string $command
334+
* @param array $descriptor_spec
335+
* @param array &$pipes
336+
* @param string|null $cwd
337+
* @param array|null $env_vars
338+
* @param array|null $options
339+
*
340+
* @param-out string $pipes
341+
*
342+
* @return resource|false
343+
*/
344+
function proc_open(array|string $command, array $descriptor_spec, &$pipes, ?string $cwd, ?array $env_vars, ?array $options) {}

0 commit comments

Comments
 (0)