Skip to content

Commit 8a55690

Browse files
committed
Fix CS
1 parent cd8aa29 commit 8a55690

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/Schema/Builder.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -134,15 +134,15 @@ public function drop($table)
134134
$blueprint->drop();
135135
}
136136

137-
/**
138-
* @inheritdoc
139-
*
140-
* Drops the entire database instead of deleting each collection individually.
141-
*
142-
* In MongoDB, dropping the whole database is much faster than dropping collections
143-
* one by one. The database will be automatically recreated when a new connection
144-
* writes to it.
145-
*/
137+
/**
138+
* @inheritdoc
139+
*
140+
* Drops the entire database instead of deleting each collection individually.
141+
*
142+
* In MongoDB, dropping the whole database is much faster than dropping collections
143+
* one by one. The database will be automatically recreated when a new connection
144+
* writes to it.
145+
*/
146146
public function dropAllTables()
147147
{
148148
$this->connection->getDatabase()->drop();

0 commit comments

Comments
 (0)