Completed
Push — master ( d5294b...100b08 )
by Vincenzo
04:04
created
api/config/config.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -10,14 +10,14 @@
 block discarded – undo
10 10
  */
11 11
 $capsule = new Capsule;
12 12
 $capsule->addConnection(array(
13
-    'driver' => 'mysql',
14
-    'host' => 'localhost',
15
-    'database' => 'dsmanager',
16
-    'username' => empty(getenv('USERNAME')) ? 'root' : getenv('USERNAME'),
17
-    'password' => empty(getenv('PASSWORD')) ? '' : getenv('PASSWORD'),
18
-    'charset' => 'utf8',
19
-    'collation' => 'utf8_general_ci',
20
-    'prefix' => ''
13
+	'driver' => 'mysql',
14
+	'host' => 'localhost',
15
+	'database' => 'dsmanager',
16
+	'username' => empty(getenv('USERNAME')) ? 'root' : getenv('USERNAME'),
17
+	'password' => empty(getenv('PASSWORD')) ? '' : getenv('PASSWORD'),
18
+	'charset' => 'utf8',
19
+	'collation' => 'utf8_general_ci',
20
+	'prefix' => ''
21 21
 ));
22 22
 $capsule->setAsGlobal();
23 23
 $capsule->bootEloquent();
Please login to merge, or discard this patch.