/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Contracts/Queue/QueueableCollection.php
34 строки
684 B
Nuno Maduro
[9.x] Improves `Support\Collection` and `Database\Eloquent\Collection` type definitions (#38538)
27 авг 2021, 17:01
Не верифицирован
27 авг 2021, 17:01
b1de554
Код
Авторство
О чём код?
<?php namespace Illuminate\Contracts\Queue; interface QueueableCollection { /** * Get the type of the entities being queued. * * @return string|null */ public function getQueueableClass(); /** * Get the identifiers for all of the entities. * * @return array<int, mixed> */ public function getQueueableIds(); /** * Get the relationships of the entities being queued. * * @return array<int, string> */ public function getQueueableRelations(); /** * Get the connection of the entities being queued. * * @return string|null */ public function getQueueableConnection(); }