Skip to content

Commit bda8e15

Browse files
committed
fix: method chaining indentation in Document.php
1 parent 9ddec46 commit bda8e15

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

server-documentation/src/Models/Document.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,8 @@ public function scopeSearch(Builder $query, string $term): Builder
267267

268268
return $query->where(function (Builder $q) use ($term) {
269269
$q->where('title', 'like', "%{$term}%")
270-
->orWhere('slug', 'like', "%{$term}%")
271-
->orWhere('content', 'like', "%{$term}%");
270+
->orWhere('slug', 'like', "%{$term}%")
271+
->orWhere('content', 'like', "%{$term}%");
272272
});
273273
}
274274

0 commit comments

Comments
 (0)