D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Bus
/
Filename :
PendingDispatch.php
back
Copy
<?php namespace Illuminate\Foundation\Bus; class PendingDispatch { /** * Create a new pending job dispatch. * * @param mixed $job * @return void */ public function __construct($job) { $this->job = $job; } /** * Set the desired connection for the job. * * @param string|null $connection * @return $this */ public function onConnection($connection) { $this->job->onConnection($connection); return $this; } /** * Set the desired queue for the job. * * @param string|null $queue * @return $this */ public function onQueue($queue) { $this->job->onQueue($queue); return $this; } /** * Set the desired delay for the job. * * @param \DateTime|int|null $delay * @return $this */ public function delay($delay) { $this->job->delay($delay); return $this; } /** * Handle the object's destruction. * * @return void */ public function __destruct() { dispatch($this->job); } }