PATH:
home
/
lab2454c
/
bancmils.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Eloquent
<?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 * * @throws \Illuminate\Contracts\Queue\EntityNotFoundException */ public function resolve($type, $id) { $instance = (new $type)->find($id); if ($instance) { return $instance; } throw new EntityNotFoundException($type, $id); } }
[-] SoftDeletingScope.php
[edit]
[-] BroadcastableModelEventOccurred.php
[edit]
[-] Prunable.php
[edit]
[+]
Relations
[+]
Factories
[+]
..
[-] MassAssignmentException.php
[edit]
[-] RelationNotFoundException.php
[edit]
[-] Scope.php
[edit]
[-] SoftDeletes.php
[edit]
[-] JsonEncodingException.php
[edit]
[-] Model.php
[edit]
[-] MassPrunable.php
[edit]
[-] Builder.php
[edit]
[-] BroadcastsEvents.php
[edit]
[-] ModelNotFoundException.php
[edit]
[-] InvalidCastException.php
[edit]
[-] .htaccess
[edit]
[-] HigherOrderBuilderProxy.php
[edit]
[+]
Casts
[+]
Concerns
[-] QueueEntityResolver.php
[edit]
[-] Collection.php
[edit]