Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Nov 27, 2024
1 parent fc308fc commit 0b5b887
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Illuminate/Console/Scheduling/PendingEventAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ public function mergeAttributes(Event $event): void
$event->expression = $this->expression;
$event->repeatSeconds = $this->repeatSeconds;

if ($this->timezone !== null) {
$event->timezone($this->timezone);
}

if ($this->description !== null) {
$event->name($this->description);
}

if ($this->timezone !== null) {
$event->timezone($this->timezone);
}

if ($this->user !== null) {
$event->user = $this->user;
}
Expand Down

0 comments on commit 0b5b887

Please sign in to comment.