1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Http;
4:
5: /**
6: * @api
7: */
8: interface HasFormDataFlag
9: {
10: public const DATA_PRESERVE_LIST_KEYS = 1;
11: public const DATA_PRESERVE_NUMERIC_KEYS = 2;
12: public const DATA_PRESERVE_STRING_KEYS = 4;
13: public const DATA_PRESERVE_ALL_KEYS = 7;
14: }
15: