22
33namespace App \Console \Commands ;
44
5+ use Exception ;
56use Illuminate \Console \Command ;
67use Illuminate \Filesystem \Filesystem ;
78use Illuminate \Support \Facades \Artisan ;
1011use PDOException ;
1112use Symfony \Component \Console \Helper \SymfonyQuestionHelper ;
1213use Symfony \Component \Console \Question \Question ;
13- use Exception ;
1414
1515/**
1616 * Class InstallAppCommand.
@@ -40,33 +40,28 @@ class InstallAppCommand extends Command
4040 */
4141 protected $ files ;
4242
43- /**
44- * host for the database
45- *
43+ /**
44+ * host for the database.
4645 */
4746 protected $ host ;
4847
49- /**
50- * port for the database
51- *
48+ /**
49+ * port for the database.
5250 */
5351 protected $ port ;
5452
55- /**
56- * Database name
57- *
53+ /**
54+ * Database name.
5855 */
5956 protected $ database ;
6057
61- /**
62- * Username of database
63- *
58+ /**
59+ * Username of database.
6460 */
6561 protected $ username ;
6662
67- /**
63+ /**
6864 * Password for the Database.
69- *
7065 */
7166 protected $ password ;
7267
@@ -241,9 +236,9 @@ protected function getKeyFile()
241236 }
242237
243238 /**
244- * Create the Database
239+ * Create the Database.
245240 *
246- * @param Object $database
241+ * @param object $database
247242 */
248243 protected function createDatabase ($ database )
249244 {
@@ -270,9 +265,9 @@ protected function createDatabase($database)
270265 }
271266
272267 /**
273- * Dump the DB
268+ * Dump the DB.
274269 *
275- * @param Object $database
270+ * @param object $database
276271 */
277272 protected function dumpDB ($ database )
278273 {
@@ -293,9 +288,9 @@ protected function dumpDB($database)
293288 }
294289
295290 /**
296- * Migrate Tables
291+ * Migrate Tables.
297292 *
298- * @param Object $database
293+ * @param object $database
299294 */
300295 protected function migrateTables ($ database )
301296 {
0 commit comments