mirror of
https://github.com/danog/process.git
synced 2024-12-02 17:51:46 +01:00
c818f508d3
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
21 lines
443 B
PHP
21 lines
443 B
PHP
<?php
|
|
|
|
namespace Amp\Process\Internal\Windows;
|
|
|
|
/**
|
|
* @internal
|
|
* @codeCoverageIgnore Windows only.
|
|
*/
|
|
final class HandshakeStatus {
|
|
const SUCCESS = 0;
|
|
const SIGNAL_UNEXPECTED = 0x01;
|
|
const INVALID_STREAM_ID = 0x02;
|
|
const INVALID_PROCESS_ID = 0x03;
|
|
const DUPLICATE_STREAM_ID = 0x04;
|
|
const INVALID_CLIENT_TOKEN = 0x05;
|
|
|
|
private function __construct() {
|
|
// empty to prevent instances of this class
|
|
}
|
|
}
|