Skip to content

Commit 47ea825

Browse files
committed
style: break long line
1 parent dfaa01d commit 47ea825

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

system/Database/SQLite3/Forge.php

+5-2
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,11 @@ protected function _attributeType(array &$attributes)
183183
*/
184184
protected function _attributeAutoIncrement(array &$attributes, array &$field)
185185
{
186-
if (! empty($attributes['AUTO_INCREMENT']) && $attributes['AUTO_INCREMENT'] === true
187-
&& stripos($field['type'], 'int') !== false) {
186+
if (
187+
! empty($attributes['AUTO_INCREMENT'])
188+
&& $attributes['AUTO_INCREMENT'] === true
189+
&& stripos($field['type'], 'int') !== false
190+
) {
188191
$field['type'] = 'INTEGER PRIMARY KEY';
189192
$field['default'] = '';
190193
$field['null'] = '';

0 commit comments

Comments
 (0)