Skip to content

Commit 7eee1d4

Browse files
andrehankeandrehanke
authored andcommitted
refat: style fix
1 parent f13f9cc commit 7eee1d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Database/Connection.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ private function compile(Builder $builder)
147147
}
148148
}
149149

150-
$cache = $builder->connection->config['cache_tables'];
150+
$cache = $builder->connection->config['cache_tables'];
151151

152152
$types = [];
153153

@@ -342,7 +342,7 @@ private function compileNewQuery($query, $bindings)
342342
$newQuery = join(array_map(fn ($k1, $k2) => $k1.$k2, $partQuery, $bindings));
343343
$newQuery = str_replace('[]', '', $newQuery);
344344
$app_encoding = config('database.sybase.app_encoding');
345-
if (!$app_encoding)
345+
if (! $app_encoding)
346346
{
347347
return $newQuery;
348348
}
@@ -392,7 +392,7 @@ public function select($query, $bindings = [], $useReadPdo = true)
392392
$result = [...$result];
393393

394394
$app_encoding = config('database.sybase.app_encoding');
395-
if (!$app_encoding)
395+
if (! $app_encoding)
396396
{
397397
return $result;
398398
}

0 commit comments

Comments
 (0)