diff --git a/extensions/mentions/src/Job/SendMentionsNotificationsJob.php b/extensions/mentions/src/Job/SendMentionsNotificationsJob.php index e86924de1f..9fea2e5492 100644 --- a/extensions/mentions/src/Job/SendMentionsNotificationsJob.php +++ b/extensions/mentions/src/Job/SendMentionsNotificationsJob.php @@ -48,7 +48,7 @@ class SendMentionsNotificationsJob extends AbstractJob public function __construct(CommentPost $post, array $userMentions, array $postMentions, array $groupMentions) { parent::__construct(); - + $this->post = $post; $this->userMentions = $userMentions; $this->postMentions = $postMentions; diff --git a/extensions/package-manager/src/Job/ComposerCommandJob.php b/extensions/package-manager/src/Job/ComposerCommandJob.php index b01dda90a6..8b30a45bb9 100644 --- a/extensions/package-manager/src/Job/ComposerCommandJob.php +++ b/extensions/package-manager/src/Job/ComposerCommandJob.php @@ -33,7 +33,7 @@ class ComposerCommandJob extends AbstractJob implements ShouldBeUnique public function __construct(AbstractActionCommand $command, string $phpVersion) { parent::__construct(); - + $this->command = $command; $this->phpVersion = $phpVersion; } diff --git a/extensions/pusher/src/SendPusherNotificationsJob.php b/extensions/pusher/src/SendPusherNotificationsJob.php index b52b2bbd42..00187c17a1 100644 --- a/extensions/pusher/src/SendPusherNotificationsJob.php +++ b/extensions/pusher/src/SendPusherNotificationsJob.php @@ -29,7 +29,7 @@ class SendPusherNotificationsJob extends AbstractJob public function __construct(BlueprintInterface $blueprint, array $recipients) { parent::__construct(); - + $this->blueprint = $blueprint; $this->recipients = $recipients; } diff --git a/framework/core/src/Mail/Job/SendRawEmailJob.php b/framework/core/src/Mail/Job/SendRawEmailJob.php index d3e76358b6..1ea13666c5 100644 --- a/framework/core/src/Mail/Job/SendRawEmailJob.php +++ b/framework/core/src/Mail/Job/SendRawEmailJob.php @@ -22,7 +22,7 @@ class SendRawEmailJob extends AbstractJob public function __construct(string $email, string $subject, string $body) { parent::__construct(); - + $this->email = $email; $this->subject = $subject; $this->body = $body; diff --git a/framework/core/src/Notification/Job/SendEmailNotificationJob.php b/framework/core/src/Notification/Job/SendEmailNotificationJob.php index d973c55cf1..44708dd679 100644 --- a/framework/core/src/Notification/Job/SendEmailNotificationJob.php +++ b/framework/core/src/Notification/Job/SendEmailNotificationJob.php @@ -29,7 +29,7 @@ class SendEmailNotificationJob extends AbstractJob public function __construct(MailableInterface $blueprint, User $recipient) { parent::__construct(); - + $this->blueprint = $blueprint; $this->recipient = $recipient; } diff --git a/framework/core/src/Notification/Job/SendNotificationsJob.php b/framework/core/src/Notification/Job/SendNotificationsJob.php index f6838c39fd..6b93013a02 100644 --- a/framework/core/src/Notification/Job/SendNotificationsJob.php +++ b/framework/core/src/Notification/Job/SendNotificationsJob.php @@ -29,7 +29,7 @@ class SendNotificationsJob extends AbstractJob public function __construct(BlueprintInterface $blueprint, array $recipients = []) { parent::__construct(); - + $this->blueprint = $blueprint; $this->recipients = $recipients; } diff --git a/framework/core/src/Queue/AbstractJob.php b/framework/core/src/Queue/AbstractJob.php index bfc4331bb7..d9adba17e4 100644 --- a/framework/core/src/Queue/AbstractJob.php +++ b/framework/core/src/Queue/AbstractJob.php @@ -28,5 +28,4 @@ public function __construct() $this->onQueue(static::$onQueue); } } - } diff --git a/framework/core/src/User/Job/RequestPasswordResetJob.php b/framework/core/src/User/Job/RequestPasswordResetJob.php index 74f4d2a8d4..9eee178d77 100644 --- a/framework/core/src/User/Job/RequestPasswordResetJob.php +++ b/framework/core/src/User/Job/RequestPasswordResetJob.php @@ -28,7 +28,7 @@ class RequestPasswordResetJob extends AbstractJob public function __construct(string $email) { parent::__construct(); - + $this->email = $email; }