mirror of
https://github.com/danog/process.git
synced 2025-01-23 06:11:34 +01:00
13 lines
178 B
PHP
13 lines
178 B
PHP
|
<?php
|
||
|
|
||
|
namespace Amp\Process\Internal;
|
||
|
|
||
|
final class ProcessStatus
|
||
|
{
|
||
|
const STARTING = 0;
|
||
|
const RUNNING = 1;
|
||
|
const ENDED = 2;
|
||
|
|
||
|
private function __construct() { }
|
||
|
}
|