1
0
mirror of https://github.com/danog/process.git synced 2024-12-04 10:38:04 +01:00
process/lib/Internal/ProcessStatus.php

16 lines
238 B
PHP
Raw Normal View History

<?php
namespace Amp\Process\Internal;
2018-10-15 06:16:09 +02:00
final class ProcessStatus
{
const STARTING = 0;
const RUNNING = 1;
const ENDED = 2;
2018-10-15 06:16:09 +02:00
private function __construct()
{
// empty to prevent instances of this class
}
}