1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Contract\Sync; |
4: | |
5: | /** |
6: | * @api |
7: | */ |
8: | interface EntitySource |
9: | { |
10: | /** |
11: | * Output from a successful CREATE, UPDATE or DELETE operation |
12: | */ |
13: | public const PROVIDER_OUTPUT = 0; |
14: | |
15: | /** |
16: | * Input to a successful CREATE, UPDATE or DELETE operation |
17: | */ |
18: | public const OPERATION_INPUT = 1; |
19: | } |
20: |