Skip to content

Commit b77a765

Browse files
committed
Fix indentation
1 parent 7a92ae2 commit b77a765

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

system/Database/BaseBuilder.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2704,12 +2704,12 @@ protected function _deleteBatch(string $table, array $keys, array $values): stri
27042704
array_map(
27052705
static fn ($key, $value) => (
27062706
$value instanceof RawSql ?
2707-
$value :
2708-
(
2709-
is_string($key) ?
2710-
$table . '.' . $key . ' = ' . $alias . '.' . $value :
2711-
$table . '.' . $value . ' = ' . $alias . '.' . $value
2712-
)
2707+
$value :
2708+
(
2709+
is_string($key) ?
2710+
$table . '.' . $key . ' = ' . $alias . '.' . $value :
2711+
$table . '.' . $value . ' = ' . $alias . '.' . $value
2712+
)
27132713
),
27142714
array_keys($constraints),
27152715
$constraints

system/Database/OCI8/Builder.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -467,12 +467,12 @@ protected function _deleteBatch(string $table, array $keys, array $values): stri
467467
array_map(
468468
static fn ($key, $value) => (
469469
$value instanceof RawSql ?
470-
$value :
471-
(
472-
is_string($key) ?
473-
$table . '.' . $key . ' = ' . $alias . '.' . $value :
474-
$table . '.' . $value . ' = ' . $alias . '.' . $value
475-
)
470+
$value :
471+
(
472+
is_string($key) ?
473+
$table . '.' . $key . ' = ' . $alias . '.' . $value :
474+
$table . '.' . $value . ' = ' . $alias . '.' . $value
475+
)
476476
),
477477
array_keys($constraints),
478478
$constraints

system/Database/Postgre/Builder.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -441,12 +441,12 @@ protected function _deleteBatch(string $table, array $keys, array $values): stri
441441
array_map(
442442
static fn ($key, $value) => (
443443
$value instanceof RawSql ?
444-
$value :
445-
(
446-
is_string($key) ?
447-
$table . '.' . $key . ' = ' . $alias . '.' . $value :
448-
$table . '.' . $value . ' = ' . $alias . '.' . $value
449-
)
444+
$value :
445+
(
446+
is_string($key) ?
447+
$table . '.' . $key . ' = ' . $alias . '.' . $value :
448+
$table . '.' . $value . ' = ' . $alias . '.' . $value
449+
)
450450
),
451451
array_keys($constraints),
452452
$constraints

0 commit comments

Comments
 (0)