Added vendor/ directory for Composer's installed files
This commit is contained in:
27
vendor/illuminate/database/Eloquent/QueueEntityResolver.php
vendored
Executable file
27
vendor/illuminate/database/Eloquent/QueueEntityResolver.php
vendored
Executable file
@ -0,0 +1,27 @@
|
||||
<?php namespace Illuminate\Database\Eloquent;
|
||||
|
||||
use Illuminate\Contracts\Queue\EntityNotFoundException;
|
||||
use Illuminate\Contracts\Queue\EntityResolver as EntityResolverContract;
|
||||
|
||||
class QueueEntityResolver implements EntityResolverContract {
|
||||
|
||||
/**
|
||||
* Resolve the entity for the given ID.
|
||||
*
|
||||
* @param string $type
|
||||
* @param mixed $id
|
||||
* @return mixed
|
||||
*/
|
||||
public function resolve($type, $id)
|
||||
{
|
||||
$instance = (new $type)->find($id);
|
||||
|
||||
if ($instance)
|
||||
{
|
||||
return $instance;
|
||||
}
|
||||
|
||||
throw new EntityNotFoundException($type, $id);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user