11 lines
154 B
PHP
11 lines
154 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Diffhead\PHP\DataEnrichmentKit;
|
|
|
|
enum Header: string
|
|
{
|
|
case XEnrichmentRequest = 'X-Enrichment-Request';
|
|
}
|