for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PhpCfdi\Finkok\Definitions;
use Eclipxe\Enum\Enum;
/**
* @method static self xml()
* @method static self pdf()
* @method bool isXml()
* @method bool isPdf()
*/
class SignedDocumentFormat extends Enum
{
* @inheritdoc
* @noinspection PhpMissingParentCallCommonInspection
protected static function overrideValues(): array
return [
'xml' => 'XML',
'pdf' => 'PDF',
];
}