1
0
mirror of https://github.com/danog/process.git synced 2024-12-02 17:51:46 +01:00
process/lib/Internal/Windows/SignalCode.php
Aaron Piotrowski c818f508d3
Add coverage annotations
Windows only classes cause havoc with coverage numbers… open to suggestions on how to fix but at least now it won't look like we didn't even try testing. :-P
2017-11-24 19:08:30 -06:00

19 lines
345 B
PHP

<?php
namespace Amp\Process\Internal\Windows;
/**
* @internal
* @codeCoverageIgnore Windows only.
*/
final class SignalCode {
const HANDSHAKE = 0x01;
const HANDSHAKE_ACK = 0x02;
const CHILD_PID = 0x03;
const EXIT_CODE = 0x04;
private function __construct() {
// empty to prevent instances of this class
}
}