pcntl/pcntl_c.php (11 lines of code) (raw):
<?php
namespace Pcntl;
/**
* @since 8.4
*/
enum QosClass implements \UnitEnum
{
case Background;
case Utility;
case Default;
case UserInitiated;
case UserInteractive;
public static function cases(): array {}
}