protected function PHPUnit_Util_PHP_Default::process in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpunit/phpunit/src/Util/PHP/Default.php \PHPUnit_Util_PHP_Default::process()
@since Method available since Release 3.5.12
Parameters
resource $pipe:
string $job:
Throws
1 call to PHPUnit_Util_PHP_Default::process()
- PHPUnit_Util_PHP_Default::runJob in vendor/
phpunit/ phpunit/ src/ Util/ PHP/ Default.php - Runs a single job (PHP code) using a separate PHP process.
1 method overrides PHPUnit_Util_PHP_Default::process()
- PHPUnit_Util_PHP_Windows::process in vendor/
phpunit/ phpunit/ src/ Util/ PHP/ Windows.php - @since Method available since Release 3.5.12
File
- vendor/
phpunit/ phpunit/ src/ Util/ PHP/ Default.php, line 69
Class
- PHPUnit_Util_PHP_Default
- Default utility for PHP sub-processes.
Code
protected function process($pipe, $job) {
fwrite($pipe, $job);
}