zlibproxy/vendor/illuminate/contracts/Queue/EntityResolver.php
2023-01-02 19:56:44 +08:00

16 lines
259 B
PHP

<?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);
}