Files
wp-multisite-waas/dependencies/amphp/process/lib/Internal/ProcessStatus.php
2024-11-30 18:24:12 -07:00

15 lines
260 B
PHP

<?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
}
}