Skip to content

Commit

Permalink
Remove unneeded extra check
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueTM authored and BlueTM committed Oct 19, 2023
1 parent 3320fdd commit f109b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Service/Abstracts/AbstractGearmanService.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function __construct(GearmanCacheWrapper $gearmanCacheWrapper, array $def
$this->workers = $gearmanCacheWrapper->getWorkers();

if (isset($defaultSettings['job_prefix'])) {
$this->jobPrefix = $defaultSettings['job_prefix']??null;
$this->jobPrefix = $defaultSettings['job_prefix'];
}
}

Expand Down

0 comments on commit f109b11

Please sign in to comment.