Skip to content

Commit 1b162ff

Browse files
committed
Apply StyleCI patch
1 parent d44d156 commit 1b162ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Database/Schema/PostgresBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,14 @@ protected function getSchema($table)
9595

9696
if (is_array($schema)) {
9797
if (in_array($table[0], $schema)) { // Table contains schema prefix
98-
return [ array_shift($table), implode('.', $table) ];
98+
return [array_shift($table), implode('.', $table)];
9999
}
100100

101101
$schema = head($schema);
102102
}
103103

104104
$schema = $schema ?: 'public';
105105

106-
return [ $schema, implode('.', $table) ];
106+
return [$schema, implode('.', $table)];
107107
}
108108
}

0 commit comments

Comments
 (0)