Skip to content

Commit e0be320

Browse files
committed
chore: add comments
1 parent ab7fe07 commit e0be320

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Commands/ImportEnvironmentCommand.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ protected function importDatabaseDump(string $dumpFile): void
448448
}
449449

450450
/**
451-
* Import the database dump using the MySQL client.
451+
* Import the MySQL database dump using the mysql client.
452452
*
453453
* @throws ImportEnvironmentException
454454
*/
@@ -477,6 +477,8 @@ protected function importMysqlDump(string $dumpFile): void
477477
}
478478

479479
/**
480+
* Import the SQLite database dump by copying it.
481+
*
480482
* @throws ImportEnvironmentException
481483
*/
482484
protected function importSqliteDump(string $dumpFile): void
@@ -489,6 +491,8 @@ protected function importSqliteDump(string $dumpFile): void
489491
}
490492

491493
/**
494+
* Import the PostgreSQL database dump using the psql client.
495+
*
492496
* @throws ImportEnvironmentException
493497
*/
494498
protected function importPgsqlDump(string $dumpFile): void

0 commit comments

Comments
 (0)