Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Sep 26, 2024
1 parent 7fabbfb commit 1dad22d
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion extensions/package-manager/src/Job/ComposerCommandJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion extensions/pusher/src/SendPusherNotificationsJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class SendPusherNotificationsJob extends AbstractJob
public function __construct(BlueprintInterface $blueprint, array $recipients)
{
parent::__construct();

$this->blueprint = $blueprint;
$this->recipients = $recipients;
}
Expand Down
2 changes: 1 addition & 1 deletion framework/core/src/Mail/Job/SendRawEmailJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class SendEmailNotificationJob extends AbstractJob
public function __construct(MailableInterface $blueprint, User $recipient)
{
parent::__construct();

$this->blueprint = $blueprint;
$this->recipient = $recipient;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class SendNotificationsJob extends AbstractJob
public function __construct(BlueprintInterface $blueprint, array $recipients = [])
{
parent::__construct();

$this->blueprint = $blueprint;
$this->recipients = $recipients;
}
Expand Down
1 change: 0 additions & 1 deletion framework/core/src/Queue/AbstractJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,4 @@ public function __construct()
$this->onQueue(static::$onQueue);
}
}

}
2 changes: 1 addition & 1 deletion framework/core/src/User/Job/RequestPasswordResetJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class RequestPasswordResetJob extends AbstractJob
public function __construct(string $email)
{
parent::__construct();

$this->email = $email;
}

Expand Down

0 comments on commit 1dad22d

Please sign in to comment.