Skip to content

Commit 7a3c0c6

Browse files
committed
Fix CS
1 parent b5ab1f8 commit 7a3c0c6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Schema/Builder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ class Builder extends \Illuminate\Database\Schema\Builder
2525
*
2626
* @param $table
2727
* @param $column
28+
*
2829
* @return bool
2930
*/
3031
public function hasColumn($table, $column): bool

tests/SchemaTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ public function testHasColumns(): void
394394
{
395395
// Insert documents with both column1 and column2
396396
DB::connection()->collection('newcollection')->insert([
397-
['column1' => 'value1', 'column2' => 'value2']
397+
['column1' => 'value1', 'column2' => 'value2'],
398398
]);
399399

400400
$this->assertTrue(Schema::hasColumns('newcollection', ['column1', 'column2']));

0 commit comments

Comments
 (0)