Skip to content

Commit 746cda7

Browse files
authored
Apply fixes from StyleCI (#17)
1 parent 34f9392 commit 746cda7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ public function boot()
3333
$bindings = $query->connection->prepareBindings($query->bindings);
3434
$pdo = $query->connection->getPdo();
3535
$realSql = $sqlWithPlaceholders;
36-
36+
3737
if (count($bindings) > 0) {
38-
$realSql = vsprintf($sqlWithPlaceholders, array_map([$pdo, 'quote'], $bindings));
38+
$realSql = vsprintf($sqlWithPlaceholders, array_map([$pdo, 'quote'], $bindings));
3939
}
4040

4141
Log::debug(sprintf('[%s] %s | %s: %s', $duration, $realSql, request()->method(), request()->getRequestUri()));

0 commit comments

Comments
 (0)