8 lines
201 B
PHP
8 lines
201 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PrinsFrank\PdfParser\Document\Dictionary\DictionaryValue\Name;
|
|
|
|
enum SecurityHandlerNameValue: string implements NameValue {
|
|
case Standard = 'Standard';
|
|
}
|