Skip to content

Commit

Permalink
fix: styles
Browse files Browse the repository at this point in the history
  • Loading branch information
MerkulovKA committed Sep 11, 2024
1 parent 7eb9dfe commit fbb02df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/EntryModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ protected function whereEmail($query, EntryQueryOptions $options)
protected function whereStatus($query, EntryQueryOptions $options)
{
$query->when($options->status, function ($query, $status) {
return $query->where('content->response_status', 'like' ,'%'.$status.'%');
return $query->where('content->response_status', 'like', '%'.$status.'%');
});

return $this;
Expand Down
1 change: 1 addition & 0 deletions src/Storage/EntryQueryOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ public function status(?string $status)

return $this;
}

/**
* Set the list of UUIDs of entries tor retrieve.
*
Expand Down

0 comments on commit fbb02df

Please sign in to comment.