Skip to content

Commit dd1fb1d

Browse files
imorlandStyleCIBot
andauthored
[1.x] [extensibility] feat: allow classes that extends AbstractJob to be placed on a specified queue (#4026)
* feat: allow classes that extends AbstractJob to be placed on a specific queue * Apply fixes from StyleCI * php 7.3 compat * Apply fixes from StyleCI * change to to avoid conflicts with extensions that already do this * chore: add docblock explaining that this solution only works for Redis queues * Apply fixes from StyleCI * chore: update docblock * Apply fixes from StyleCI --------- Co-authored-by: StyleCI Bot <bot@styleci.io>
1 parent 5eccb38 commit dd1fb1d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/SendPusherNotificationsJob.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ class SendPusherNotificationsJob extends AbstractJob
2828

2929
public function __construct(BlueprintInterface $blueprint, array $recipients)
3030
{
31+
parent::__construct();
32+
3133
$this->blueprint = $blueprint;
3234
$this->recipients = $recipients;
3335
}

0 commit comments

Comments
 (0)