Primo Committ
This commit is contained in:
74
vendor/laravel/framework/src/Illuminate/Queue/CallQueuedClosure.php
vendored
Normal file
74
vendor/laravel/framework/src/Illuminate/Queue/CallQueuedClosure.php
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
namespace Illuminate\Queue;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Contracts\Container\Container;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Foundation\Bus\Dispatchable;
|
||||
use ReflectionFunction;
|
||||
|
||||
class CallQueuedClosure implements ShouldQueue
|
||||
{
|
||||
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||||
|
||||
/**
|
||||
* The serializable Closure instance.
|
||||
*
|
||||
* @var \Illuminate\Queue\SerializableClosure
|
||||
*/
|
||||
public $closure;
|
||||
|
||||
/**
|
||||
* Indicate if the job should be deleted when models are missing.
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
public $deleteWhenMissingModels = true;
|
||||
|
||||
/**
|
||||
* Create a new job instance.
|
||||
*
|
||||
* @param \Illuminate\Queue\SerializableClosure $closure
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(SerializableClosure $closure)
|
||||
{
|
||||
$this->closure = $closure;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new job instance.
|
||||
*
|
||||
* @param \Closure $job
|
||||
* @return self
|
||||
*/
|
||||
public static function create(Closure $job)
|
||||
{
|
||||
return new self(new SerializableClosure($job));
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the job.
|
||||
*
|
||||
* @param \Illuminate\Contracts\Container\Container $container
|
||||
* @return void
|
||||
*/
|
||||
public function handle(Container $container)
|
||||
{
|
||||
$container->call($this->closure->getClosure());
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the display name for the queued job.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function displayName()
|
||||
{
|
||||
$reflection = new ReflectionFunction($this->closure->getClosure());
|
||||
|
||||
return 'Closure ('.basename($reflection->getFileName()).':'.$reflection->getStartLine().')';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user