for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace floor12\DalliApi\Enum;
class SimpleEnum
{
/** @var array */
public static $list = [];
/**
* @param int|string $value
* @return string|null
*/
public static function getLabel($value): ?string
return static::$list[$value] ?? null;
}