mirror of
https://github.com/danog/process.git
synced 2024-12-02 09:37:55 +01:00
16 lines
238 B
PHP
16 lines
238 B
PHP
<?php
|
|
|
|
namespace Amp\Process\Internal;
|
|
|
|
final class ProcessStatus
|
|
{
|
|
const STARTING = 0;
|
|
const RUNNING = 1;
|
|
const ENDED = 2;
|
|
|
|
private function __construct()
|
|
{
|
|
// empty to prevent instances of this class
|
|
}
|
|
}
|