Skip to content

Commit efde3a6

Browse files
committed
Added PHP 5.4 requirement and fixed code comment
1 parent 92b4a87 commit efde3a6

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
"email": "[email protected]"
99
}
1010
],
11+
"require": {
12+
"php": ">=5.4"
13+
},
1114
"autoload": {
1215
"psr-4": {
1316
"kamermans\\Command\\" : ["src/","test/"]

src/ProcessManager.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@ public function __construct($cmd, &$buffers)
2323
/**
2424
* Executes a command returning the exitcode and capturing the stdout and stderr
2525
*
26-
* @param string $cmd
27-
* @param array &$buffers
28-
* 0 - StdIn contents to be passed to the command (optional)
29-
* 1 - StdOut contents returned by the command execution
30-
* 2 - StdOut contents returned by the command execution
3126
* @param callable $callback A callback function for stdout/stderr data
3227
* @param bool $callbacklines Call callback for each line
3328
* @param int $buffer_size Read this many bytes at a time

0 commit comments

Comments
 (0)