diff options
author | Marvin Borner | 2018-06-08 20:03:25 +0200 |
---|---|---|
committer | Marvin Borner | 2018-06-08 20:03:25 +0200 |
commit | 92b7dd3335a6572debeacfb5faa82c63a5e67888 (patch) | |
tree | 7ebbca22595d542ec5e2912a24a0400ac8f6b113 /main/app/sprinkles/core/config/testing.php | |
parent | 22a1bb27f94ea33042b0bdd35bef1a5cfa96cc0d (diff) |
Some minor fixes
Diffstat (limited to 'main/app/sprinkles/core/config/testing.php')
-rw-r--r-- | main/app/sprinkles/core/config/testing.php | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/main/app/sprinkles/core/config/testing.php b/main/app/sprinkles/core/config/testing.php index 4d5bb04..4bae194 100644 --- a/main/app/sprinkles/core/config/testing.php +++ b/main/app/sprinkles/core/config/testing.php @@ -1,23 +1,23 @@ -<?php - -/** - * Default testing config file for UserFrosting. You may override/extend this in your site's configuration file to customize deploy settings. - * - */ - -return [ - 'cache' => [ - 'illuminate' => [ - 'default' => 'array', - ] - ], - 'db' => [ - 'test_integration' => [ - 'driver' => 'sqlite', - 'database' => ':memory:', - ] - ], - 'settings' => [ - 'displayErrorDetails' => FALSE - ] -]; +<?php
+
+/**
+ * Default testing config file for UserFrosting. You may override/extend this in your site's configuration file to customize deploy settings.
+ *
+ */
+
+return [
+ 'cache' => [
+ 'illuminate' => [
+ 'default' => 'array',
+ ]
+ ],
+ 'db' => [
+ 'test_integration' => [
+ 'driver' => 'sqlite',
+ 'database' => ':memory:',
+ ]
+ ],
+ 'settings' => [
+ 'displayErrorDetails' => FALSE
+ ]
+];
|