Initial Commit
This commit is contained in:
14
dependencies/amphp/process/lib/Internal/ProcessStatus.php
vendored
Normal file
14
dependencies/amphp/process/lib/Internal/ProcessStatus.php
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace WP_Ultimo\Dependencies\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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user