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