1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Contract\Sync\Event; |
4: | |
5: | use Salient\Contract\Sync\SyncStoreInterface; |
6: | |
7: | /** |
8: | * @api |
9: | */ |
10: | interface SyncStoreEventInterface |
11: | { |
12: | /** |
13: | * Get the entity store that dispatched the event |
14: | */ |
15: | public function getStore(): SyncStoreInterface; |
16: | } |
17: |