Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
laravel-adminpanel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
laravel-adminpanel
Commits
ee5d4436
Commit
ee5d4436
authored
Nov 21, 2018
by
Viral Solani
Committed by
StyleCI Bot
Nov 21, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply fixes from StyleCI
parent
f000dff4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
21 deletions
+16
-21
InstallAppCommand.php
app/Console/Commands/InstallAppCommand.php
+16
-21
No files found.
app/Console/Commands/InstallAppCommand.php
View file @
ee5d4436
...
@@ -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
O
bject $database
* @param
o
bject $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
O
bject $database
* @param
o
bject $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
O
bject $database
* @param
o
bject $database
*/
*/
protected
function
migrateTables
(
$database
)
protected
function
migrateTables
(
$database
)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment