Skip to content

Commit 4e5257b

Browse files
AlexVanderbistactions-user
authored andcommitted
Fix styling
1 parent cbe5336 commit 4e5257b

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/Concerns/AppendsAttributesToResults.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace Spatie\QueryBuilder\Concerns;
44

55
use Illuminate\Database\Eloquent\Model;
6-
use Illuminate\Pagination\Cursor;
76
use Illuminate\Support\Collection;
87
use Spatie\QueryBuilder\Exceptions\InvalidAppendQuery;
98

@@ -30,7 +29,7 @@ protected function addAppendsToResults(Collection $results)
3029
});
3130
}
3231

33-
protected function addAppendsToCursor( $results)
32+
protected function addAppendsToCursor($results)
3433
{
3534
return $results->each(function (Model $result) {
3635
return $result->append($this->request->appends()->toArray());

tests/AppendTest.php

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

55
use Illuminate\Database\Eloquent\Model;
66
use Illuminate\Http\Request;
7-
use Illuminate\Pagination\LengthAwarePaginator;
87
use Illuminate\Support\Collection;
98
use Spatie\QueryBuilder\Exceptions\InvalidAppendQuery;
109
use Spatie\QueryBuilder\QueryBuilder;

0 commit comments

Comments
 (0)