Skip to content

Commit

Permalink
[CI - Linting] Run cs-fixer and eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
tobytwigger authored and github-actions[bot] committed Feb 20, 2023
1 parent 80d0b4c commit e146429
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Models/JobException.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class JobException extends Model
];

protected $with = [
'previous'
'previous',
];

protected $dateFormat = 'Y-m-d H:i:s.v';
Expand Down Expand Up @@ -61,7 +61,7 @@ public function loadAllPrevious(): static
if (Str::startsWith($string, '.')) {
$string = Str::substr($string, 1);
}
if(!$this->relationLoaded($string)) {
if (!$this->relationLoaded($string)) {
$this->load($string);
}
$currentException = $currentException->previous;
Expand Down
2 changes: 1 addition & 1 deletion src/Models/JobStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class JobStatus extends Model
];

protected $with = [
'statuses', 'tags', 'signals', 'messages', 'exception', 'batch', 'exception.previous', 'users'
'statuses', 'tags', 'signals', 'messages', 'exception', 'batch', 'exception.previous', 'users',
];

protected $dateFormat = 'Y-m-d H:i:s.v';
Expand Down

0 comments on commit e146429

Please sign in to comment.