Commit ee5d4436 authored by Viral Solani's avatar Viral Solani Committed by StyleCI Bot

Apply fixes from StyleCI

parent f000dff4
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
namespace App\Console\Commands; namespace App\Console\Commands;
use Exception;
use Illuminate\Console\Command; use Illuminate\Console\Command;
use Illuminate\Filesystem\Filesystem; use Illuminate\Filesystem\Filesystem;
use Illuminate\Support\Facades\Artisan; use Illuminate\Support\Facades\Artisan;
...@@ -10,7 +11,6 @@ use Illuminate\Support\Facades\File; ...@@ -10,7 +11,6 @@ use Illuminate\Support\Facades\File;
use PDOException; use PDOException;
use Symfony\Component\Console\Helper\SymfonyQuestionHelper; use Symfony\Component\Console\Helper\SymfonyQuestionHelper;
use Symfony\Component\Console\Question\Question; use Symfony\Component\Console\Question\Question;
use Exception;
/** /**
* Class InstallAppCommand. * Class InstallAppCommand.
...@@ -41,32 +41,27 @@ class InstallAppCommand extends Command ...@@ -41,32 +41,27 @@ class InstallAppCommand extends Command
protected $files; protected $files;
/** /**
* host for the database * host for the database.
*
*/ */
protected $host; protected $host;
/** /**
* port for the database * port for the database.
*
*/ */
protected $port; protected $port;
/** /**
* Database name * Database name.
*
*/ */
protected $database; protected $database;
/** /**
* Username of database * Username of database.
*
*/ */
protected $username; protected $username;
/** /**
* Password for the Database. * Password for the Database.
*
*/ */
protected $password; protected $password;
...@@ -241,9 +236,9 @@ class InstallAppCommand extends Command ...@@ -241,9 +236,9 @@ class InstallAppCommand extends Command
} }
/** /**
* Create the Database * Create the Database.
* *
* @param Object $database * @param object $database
*/ */
protected function createDatabase($database) protected function createDatabase($database)
{ {
...@@ -270,9 +265,9 @@ class InstallAppCommand extends Command ...@@ -270,9 +265,9 @@ class InstallAppCommand extends Command
} }
/** /**
* Dump the DB * Dump the DB.
* *
* @param Object $database * @param object $database
*/ */
protected function dumpDB($database) protected function dumpDB($database)
{ {
...@@ -293,9 +288,9 @@ class InstallAppCommand extends Command ...@@ -293,9 +288,9 @@ class InstallAppCommand extends Command
} }
/** /**
* Migrate Tables * Migrate Tables.
* *
* @param Object $database * @param object $database
*/ */
protected function migrateTables($database) protected function migrateTables($database)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment