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

33 lines
546 B
PHP
Executable File

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