Convert configuration PHP 5.4 arrays.

This commit is contained in:
Taylor Otwell
2014-08-24 14:03:58 -05:00
parent a204045b28
commit 76c84d8652
17 changed files with 88 additions and 151 deletions

View File

@@ -1,6 +1,6 @@
<?php
return array(
return [
/*
|--------------------------------------------------------------------------
@@ -18,9 +18,9 @@ return array(
|
*/
'connections' => array(
'connections' => [
'mysql' => array(
'mysql' => [
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'homestead',
@@ -29,9 +29,9 @@ return array(
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),
],
'pgsql' => array(
'pgsql' => [
'driver' => 'pgsql',
'host' => 'localhost',
'database' => 'homestead',
@@ -40,8 +40,8 @@ return array(
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
),
],
),
],
);
];