zlibproxy/vendor/illuminate/contracts/Queue/EntityResolver.php

16 lines
259 B
PHP
Raw Normal View History

2023-01-02 12:56:44 +01:00
<?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);
}