blob: aad97a192378d23d733185f0936ab97afe34e908 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Queue;
4
5interface EntityResolver
6{
7 /**
8 * Resolve the entity for the given ID.
9 *
10 * @param string $type
11 * @param mixed $id
12 * @return mixed
13 */
14 public function resolve($type, $id);
15}