1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Sync;
4:
5: /**
6: * Sync entity states
7: */
8: interface SyncEntityState
9: {
10: /**
11: * The entity is being serialized
12: */
13: public const SERIALIZING = 2;
14: }
15: