1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Core\Entity;
4:
5: use Salient\Contract\Core\Provider\ProviderContextInterface;
6: use Salient\Contract\Core\Provider\ProviderInterface;
7:
8: /**
9: * @api
10: *
11: * @template TProvider of ProviderInterface
12: * @template TContext of ProviderContextInterface
13: *
14: * @extends Providable<TProvider,TContext>
15: */
16: interface ProviderEntityInterface extends
17: EntityInterface,
18: Providable {}
19: