Skip to content

Commit a4b51d9

Browse files
laravel-shiftgithub-actions[bot]
authored andcommitted
Fix styling
1 parent a43dce1 commit a4b51d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/SchemaRulesTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010

1111
beforeEach(function () {
1212
$this->tableName = 'tests';
13-
//realy make sure that the table does not exists before and after a test
13+
// realy make sure that the table does not exists before and after a test
1414
Schema::disableForeignKeyConstraints();
1515
Schema::dropIfExists($this->tableName);
1616
Schema::enableForeignKeyConstraints();
1717
});
1818

1919
afterEach(function () {
20-
//realy make sure that the table does not exists before and after a test
20+
// realy make sure that the table does not exists before and after a test
2121
Schema::disableForeignKeyConstraints();
2222
Schema::dropIfExists($this->tableName);
2323
Schema::enableForeignKeyConstraints();

0 commit comments

Comments
 (0)