Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
38e9a241
Commit
38e9a241
authored
Dec 30, 2014
by
Carlos - 安正超
Committed by
overtrue
Dec 30, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modify the wording of env() default values
parent
dc384fe1
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
16 deletions
+16
-16
config/app.php
+1
-1
config/cache.php
+1
-1
config/database.php
+12
-12
config/queue.php
+1
-1
config/session.php
+1
-1
No files found.
config/app.php
View file @
38e9a241
...
@@ -78,7 +78,7 @@ return [
...
@@ -78,7 +78,7 @@ return [
|
|
*/
*/
'key'
=>
env
(
'APP_KEY'
)
?:
'YourSecretKey!!!'
,
'key'
=>
env
(
'APP_KEY'
,
'YourSecretKey!!!'
)
,
'cipher'
=>
MCRYPT_RIJNDAEL_128
,
'cipher'
=>
MCRYPT_RIJNDAEL_128
,
...
...
config/cache.php
View file @
38e9a241
...
@@ -13,7 +13,7 @@ return [
...
@@ -13,7 +13,7 @@ return [
|
|
*/
*/
'default'
=>
env
(
'CACHE_DRIVER'
)
?:
'file'
,
'default'
=>
env
(
'CACHE_DRIVER'
,
'file'
)
,
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
...
...
config/database.php
View file @
38e9a241
...
@@ -54,10 +54,10 @@ return [
...
@@ -54,10 +54,10 @@ return [
'mysql'
=>
[
'mysql'
=>
[
'driver'
=>
'mysql'
,
'driver'
=>
'mysql'
,
'host'
=>
env
(
'DB_HOST'
)
?:
'localhost'
,
'host'
=>
env
(
'DB_HOST'
,
'localhost'
)
,
'database'
=>
env
(
'DB_DATABASE'
)
?:
'forge'
,
'database'
=>
env
(
'DB_DATABASE'
,
'forge'
)
,
'username'
=>
env
(
'DB_USERNAME'
)
?:
'forge'
,
'username'
=>
env
(
'DB_USERNAME'
,
'forge'
)
,
'password'
=>
env
(
'DB_PASSWORD'
)
?:
''
,
'password'
=>
env
(
'DB_PASSWORD'
,
''
)
,
'charset'
=>
'utf8'
,
'charset'
=>
'utf8'
,
'collation'
=>
'utf8_unicode_ci'
,
'collation'
=>
'utf8_unicode_ci'
,
'prefix'
=>
''
,
'prefix'
=>
''
,
...
@@ -65,10 +65,10 @@ return [
...
@@ -65,10 +65,10 @@ return [
'pgsql'
=>
[
'pgsql'
=>
[
'driver'
=>
'pgsql'
,
'driver'
=>
'pgsql'
,
'host'
=>
env
(
'DB_HOST'
)
?:
'localhost'
,
'host'
=>
env
(
'DB_HOST'
,
'localhost'
)
,
'database'
=>
env
(
'DB_DATABASE'
)
?:
'forge'
,
'database'
=>
env
(
'DB_DATABASE'
,
'forge'
)
,
'username'
=>
env
(
'DB_USERNAME'
)
?:
'forge'
,
'username'
=>
env
(
'DB_USERNAME'
,
'forge'
)
,
'password'
=>
env
(
'DB_PASSWORD'
)
?:
''
,
'password'
=>
env
(
'DB_PASSWORD'
,
''
)
,
'charset'
=>
'utf8'
,
'charset'
=>
'utf8'
,
'prefix'
=>
''
,
'prefix'
=>
''
,
'schema'
=>
'public'
,
'schema'
=>
'public'
,
...
@@ -76,10 +76,10 @@ return [
...
@@ -76,10 +76,10 @@ return [
'sqlsrv'
=>
[
'sqlsrv'
=>
[
'driver'
=>
'sqlsrv'
,
'driver'
=>
'sqlsrv'
,
'host'
=>
env
(
'DB_HOST'
)
?:
'localhost'
,
'host'
=>
env
(
'DB_HOST'
,
'localhost'
)
,
'database'
=>
env
(
'DB_DATABASE'
)
?:
'forge'
,
'database'
=>
env
(
'DB_DATABASE'
,
'forge'
)
,
'username'
=>
env
(
'DB_USERNAME'
)
?:
'forge'
,
'username'
=>
env
(
'DB_USERNAME'
,
'forge'
)
,
'password'
=>
env
(
'DB_PASSWORD'
)
?:
''
,
'password'
=>
env
(
'DB_PASSWORD'
,
''
)
,
'prefix'
=>
''
,
'prefix'
=>
''
,
],
],
...
...
config/queue.php
View file @
38e9a241
...
@@ -16,7 +16,7 @@ return [
...
@@ -16,7 +16,7 @@ return [
|
|
*/
*/
'default'
=>
env
(
'QUEUE_DRIVER'
)
?:
'sync'
,
'default'
=>
env
(
'QUEUE_DRIVER'
,
'sync'
)
,
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
...
...
config/session.php
View file @
38e9a241
...
@@ -16,7 +16,7 @@ return [
...
@@ -16,7 +16,7 @@ return [
|
|
*/
*/
'driver'
=>
env
(
'SESSION_DRIVER'
)
?:
'file'
,
'driver'
=>
env
(
'SESSION_DRIVER'
,
'file'
)
,
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
...
...
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