mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-31 20:51:46 +01:00
9e103260ec
2f3e9be0ae
[DX] Test BetterNodeFinder with Laravel container (#4106)
16 lines
278 B
PHP
16 lines
278 B
PHP
<?php
|
|
|
|
namespace RectorPrefix202306\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);
|
|
}
|