Skip to content

Commit b36efb1

Browse files
committed
Fix CS
1 parent 837fbb3 commit b36efb1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Schema/Builder.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public function dropAllTables()
153153
$this->connection->getDatabase()->drop();
154154
}
155155

156-
/** @param string|null $schema Database name */
156+
/** @param string|null $schema Database name */
157157
public function getTables($schema = null)
158158
{
159159
$db = $this->connection->getDatabase($schema);
@@ -241,6 +241,7 @@ public function getTableListing($schema = null, $schemaQualified = false)
241241
}
242242

243243
$collections = array_merge(...array_values($collections));
244+
244245
sort($collections);
245246

246247
return $collections;

tests/SchemaTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ public function testGetColumns()
528528
$this->assertSame([], $columns);
529529

530530
// Qualified table name
531-
$columns = Schema::getColumns(DB::getDatabaseName().'.newcollection');
531+
$columns = Schema::getColumns(DB::getDatabaseName() . '.newcollection');
532532
$this->assertIsArray($columns);
533533
$this->assertCount(5, $columns);
534534
}

0 commit comments

Comments
 (0)