phpOMS/Utils/RnG/DistributionType.php
2023-06-17 03:13:39 +02:00

33 lines
531 B
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.1
*
* @package phpOMS\Utils\RnG
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\Utils\RnG;
use phpOMS\Stdlib\Base\Enum;
/**
* Distribution type enum.
*
* @package phpOMS\Utils\RnG
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*/
abstract class DistributionType extends Enum
{
public const UNIFORM = 0;
public const NORMAL = 1;
}