Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
4rthem committed Dec 12, 2023
1 parent 877e872 commit dc13131
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/php/workflow/src/State/JobState.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,10 @@ public function __unserialize(array $data): void
$this->jobId = $data['jobId'];
$this->status = $data['status'];
$this->outputs = $data['outputs'];
$this->inputs = $data['inputs'];
$this->inputs = $data['inputs'] ?? null;
$this->triggeredAt = $data['triggeredAt'];
$this->startedAt = $data['startedAt'];
$this->endedAt = $data['endedAt'];
$this->startedAt = $data['startedAt'] ?? null;
$this->endedAt = $data['endedAt'] ?? null;
$this->errors = $data['errors'] ?? [];
}

Expand Down

0 comments on commit dc13131

Please sign in to comment.