2026-01-09 07:13:59 +00:00

9 lines
207 B
PHP

<?php declare(strict_types=1);
namespace PrinsFrank\PdfParser\Document\Dictionary\DictionaryValue\Name;
enum DirectionNameValue: string implements NameValue {
case L2R = 'L2R';
case R2L = 'R2L';
}