Skip to content

Commit 9d00c90

Browse files
stevebaumangithub-actions[bot]
authored andcommitted
Fix code style
1 parent 267ace7 commit 9d00c90

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

src/Collections/PaginatedCollection.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
/**
99
* @template TKey of array-key
10-
*
1110
* @template TValue
1211
*
1312
* @template-extends Collection<TKey, TValue>

src/MessageQuery.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,8 @@ protected function fetch(Collection $messages): array
297297
return $this->connection()->fetch($fetch, $uids->all())->mapWithKeys(function (UntaggedResponse $response) {
298298
$data = $response->tokenAt(3);
299299

300-
if (!$data instanceof ListData) {
301-
throw new RuntimeException("Invalid data type at index 3");
300+
if (! $data instanceof ListData) {
301+
throw new RuntimeException('Invalid data type at index 3');
302302
}
303303

304304
$uid = $data->lookup('UID')->value;

src/Pagination/LengthAwarePaginator.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
/**
1111
* @template TKey of array-key
12-
*
1312
* @template TValue
1413
*
1514
* @template-implements Arrayable<TKey, TValue>

0 commit comments

Comments
 (0)