We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8451af commit e83d7f1Copy full SHA for e83d7f1
src/Repositories/Serializer.php
@@ -103,7 +103,7 @@ public function jsonSerialize(): mixed
103
if (is_null($this->items) || $this->items->count() === 1) {
104
return tap($this->repository->serializeForShow(
105
$this->request(RepositoryShowRequest::class)
106
- ), fn(array &$data) => $data['meta'] = array_merge($data['meta'] ?? [], $this->meta));
+ ), fn (array &$data) => $data['meta'] = array_merge($data['meta'] ?? [], $this->meta));
107
}
108
109
$paginator = new Paginator($this->items->values(), $this->perPage);
0 commit comments