Passed
Push — master ( 489916...6b7476 )
by Cody
04:18 queued 11s
created
docker/application/configure-db.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -72,8 +72,7 @@  discard block
 block discarded – undo
72 72
 try {
73 73
     $pdo->query('SELECT 1 FROM ttrss_feeds');
74 74
     // reached this point => table found, assume db is complete
75
-}
76
-catch (PDOException $e) {
75
+} catch (PDOException $e) {
77 76
     echo 'Database table not found, applying schema... ' . PHP_EOL;
78 77
     $schema = file_get_contents('schema/ttrss_schema_' . $config['DB_TYPE'] . '.sql');
79 78
     $schema = preg_replace('/--(.*?);/', '', $schema);
@@ -128,8 +127,7 @@  discard block
 block discarded – undo
128 127
     try {
129 128
         dbconnect($config);
130 129
         return true;
131
-    }
132
-    catch (PDOException $e) {
130
+    } catch (PDOException $e) {
133 131
         return false;
134 132
     }
135 133
 }
Please login to merge, or discard this patch.
src/Components/Twig/Filters/StaticFiles.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,9 @@
 block discarded – undo
15 15
             $filename = substr($filename, 0, strpos($filename, "?"));
16 16
         }
17 17
         $timestamp = filemtime(BASEPATH.DS.'public'.DS.'js'.DS.$filename);
18
-        if ($query) $timestamp .= "&$query";
18
+        if ($query) {
19
+            $timestamp .= "&$query";
20
+        }
19 21
 
20 22
         return "<script type=\"text/javascript\" charset=\"utf-8\" src=\"/js/$filename?$timestamp\"></script>\n";
21 23
     }
Please login to merge, or discard this patch.