Файл vendor/laravel/framework/src/Illuminate/Contracts/Queue/EntityResolver.php Вес запакованого файла 169b (169 b) Вес распакованого файла: 259b (259 b) Метод сжатия: 8
<?php
namespace Illuminate\Contracts\Queue;
interface EntityResolver
{
/**
* Resolve the entity for the given ID.
*
* @param string $type
* @param mixed $id
* @return mixed
*/
public function resolve($type, $id);
}