ClearableQueue.php
2 years ago
EntityNotFoundException.php
2 years ago
EntityResolver.php
2 years ago
Factory.php
2 years ago
Job.php
3 weeks ago
Monitor.php
3 weeks ago
Queue.php
3 weeks ago
QueueableCollection.php
3 weeks ago
QueueableEntity.php
2 years ago
ShouldBeEncrypted.php
2 years ago
ShouldBeUnique.php
2 years ago
ShouldBeUniqueUntilProcessing.php
2 years ago
ShouldQueue.php
2 years ago
QueueableEntity.php
27 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Contracts\Queue; |
| 4 | |
| 5 | /** @internal */ |
| 6 | interface QueueableEntity |
| 7 | { |
| 8 | /** |
| 9 | * Get the queueable identity for the entity. |
| 10 | * |
| 11 | * @return mixed |
| 12 | */ |
| 13 | public function getQueueableId(); |
| 14 | /** |
| 15 | * Get the relationships for the entity. |
| 16 | * |
| 17 | * @return array |
| 18 | */ |
| 19 | public function getQueueableRelations(); |
| 20 | /** |
| 21 | * Get the connection of the entity. |
| 22 | * |
| 23 | * @return string|null |
| 24 | */ |
| 25 | public function getQueueableConnection(); |
| 26 | } |
| 27 |