Skip to content

Commit 903d5c7

Browse files
authored
Merge pull request #300 from viralsolani/analysis-8n7DK0
Apply fixes from StyleCI
2 parents f000dff + ee5d443 commit 903d5c7

File tree

1 file changed

+16
-21
lines changed

1 file changed

+16
-21
lines changed

app/Console/Commands/InstallAppCommand.php

Lines changed: 16 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace App\Console\Commands;
44

5+
use Exception;
56
use Illuminate\Console\Command;
67
use Illuminate\Filesystem\Filesystem;
78
use Illuminate\Support\Facades\Artisan;
@@ -10,7 +11,6 @@
1011
use PDOException;
1112
use Symfony\Component\Console\Helper\SymfonyQuestionHelper;
1213
use 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

Comments
 (0)