Test Failed
Branch master (60d8a3)
by Daniel
05:24 queued 02:24
created
app/core/Database.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@
 block discarded – undo
46 46
     {
47 47
         switch ($config['connection']) {
48 48
             case 'mysql':
49
-                return 'mysql:host=' . $config['mysql']['host'] . ';dbname=' . $config['mysql']['database'];
49
+                return 'mysql:host='.$config['mysql']['host'].';dbname='.$config['mysql']['database'];
50 50
             case 'sqlite':
51
-                return 'sqlite:' . __DIR__ . '/database/' . $config['sqlite']['database'] . '.sqlite';
51
+                return 'sqlite:'.__DIR__.'/database/'.$config['sqlite']['database'].'.sqlite';
52 52
             default:
53 53
                 throw new Exception('Connection type not supported');
54 54
         }
Please login to merge, or discard this patch.