Skip to content

Commit e14ca8b

Browse files
committed
style: break long line
1 parent 601ec58 commit e14ca8b

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

system/Database/OCI8/Forge.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,10 @@ protected function _alterTable(string $alterType, string $table, $processedField
106106
$sql = 'ALTER TABLE ' . $this->db->escapeIdentifiers($table);
107107

108108
if ($alterType === 'DROP') {
109-
$fields = array_map(fn ($field) => $this->db->escapeIdentifiers(trim($processedFields)), is_string($processedFields) ? explode(',', $processedFields) : $processedFields);
109+
$fields = array_map(
110+
fn ($field) => $this->db->escapeIdentifiers(trim($processedFields)),
111+
is_string($processedFields) ? explode(',', $processedFields) : $processedFields
112+
);
110113

111114
return $sql . ' DROP (' . implode(',', $fields) . ') CASCADE CONSTRAINT INVALIDATE';
112115
}

0 commit comments

Comments
 (0)