Passed
Push — main ( 2a77a5...d280a1 )
by Thierry
04:03 queued 02:04
created
src/Driver.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      *
22 22
      * @var array
23 23
      */
24
-    private $types = [ //! arrays
24
+    private $types = [//! arrays
25 25
         'Numbers' => ["smallint" => 5, "integer" => 10, "bigint" => 19, "boolean" => 1,
26 26
             "numeric" => 0, "real" => 7, "double precision" => 16, "money" => 20],
27 27
         'Date and time' => ["date" => 13, "time" => 17, "timestamp" => 20, "timestamptz" => 21, "interval" => 0],
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     private $editFunctions = [[
71 71
         "char" => "md5",
72 72
         "date|time" => "now",
73
-    ],[
73
+    ], [
74 74
         // $this->numberRegex() => "+/-",
75 75
         "date|time" => "+ interval/- interval", //! escape
76 76
         "char|text" => "||",
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -91,11 +91,9 @@
 block discarded – undo
91 91
     {
92 92
         if (extension_loaded("pgsql")) {
93 93
             $connection = new Db\PgSql\Connection($this, $this->util, $this->trans, 'PgSQL');
94
-        }
95
-        elseif (extension_loaded("pdo_pgsql")) {
94
+        } elseif (extension_loaded("pdo_pgsql")) {
96 95
             $connection = new Db\Pdo\Connection($this, $this->util, $this->trans, 'PDO_PgSQL');
97
-        }
98
-        else {
96
+        } else {
99 97
             throw new AuthException($this->trans->lang('No package installed to connect to a PostgreSQL server.'));
100 98
         }
101 99
 
Please login to merge, or discard this patch.
src/Db/Pdo/Connection.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
     public $timeout;
18 18
 
19 19
     /**
20
-    * @inheritDoc
21
-    */
20
+     * @inheritDoc
21
+     */
22 22
     public function open(string $database, string $schema = '')
23 23
     {
24 24
         $server = str_replace(":", "' port='", addcslashes($this->driver->options('server'), "'\\"));
Please login to merge, or discard this patch.
src/Db/Query.php 1 patch
Spacing   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,9 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     protected function limitToOne(string $table, string $query, string $where)
20 20
     {
21
-        return (preg_match('~^INTO~', $query) ? $this->driver->limit($query, $where, 1, 0) :
22
-            " $query" . ($this->driver->isView($this->driver->tableStatusOrName($table)) ? $where :
23
-            " WHERE ctid = (SELECT ctid FROM " . $this->driver->table($table) . $where . ' LIMIT 1)'));
21
+        return (preg_match('~^INTO~', $query) ? $this->driver->limit($query, $where, 1, 0) : " $query" . ($this->driver->isView($this->driver->tableStatusOrName($table)) ? $where : " WHERE ctid = (SELECT ctid FROM " . $this->driver->table($table) . $where . ' LIMIT 1)'));
24 22
     }
25 23
 
26 24
     /**
Please login to merge, or discard this patch.
src/Db/DatabaseTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@
 block discarded – undo
277 277
      */
278 278
     public function truncateTables(array $tables)
279 279
     {
280
-        $this->driver->execute('TRUNCATE ' . implode(', ', array_map(function ($table) {
280
+        $this->driver->execute('TRUNCATE ' . implode(', ', array_map(function($table) {
281 281
             return $this->driver->table($table);
282 282
         }, $tables)));
283 283
         return true;
Please login to merge, or discard this patch.