1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Core\Entity;
4:
5: /**
6: * @api
7: */
8: interface EntityInterface extends
9: Constructible,
10: Extensible,
11: Normalisable,
12: Readable,
13: Writable,
14: Temporal {}
15: