composer package updates
[openemr.git] / vendor / illuminate / contracts / Queue / QueueableEntity.php
blob00e28f8a070f87b68eec26d372cbf85a2c04c9b0
1 <?php
3 namespace Illuminate\Contracts\Queue;
5 interface QueueableEntity
7 /**
8 * Get the queueable identity for the entity.
10 * @return mixed
12 public function getQueueableId();
14 /**
15 * Get the connection of the entity.
17 * @return string|null
19 public function getQueueableConnection();