Blame view
public/vendor/illuminate/contracts/Queue/QueueableEntity.php
481 Bytes
86143e36f Коммит вторник |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<?php namespace Illuminate\Contracts\Queue; interface QueueableEntity { /** * Get the queueable identity for the entity. * * @return mixed */ public function getQueueableId(); /** * Get the relationships for the entity. * * @return array */ public function getQueueableRelations(); /** * Get the connection of the entity. * * @return string|null */ public function getQueueableConnection(); } |