Passed
Push — main ( 33d6c4...b8b213 )
by Thierry
05:49 queued 03:51
created
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/Driver.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -92,8 +92,7 @@
 block discarded – undo
92 92
         $connection = null;
93 93
         if (extension_loaded("pdo_pgsql")) {
94 94
             $connection = new Db\Pdo\Connection($this, $this->util, $this->trans, 'PDO_PgSQL');
95
-        }
96
-        else {
95
+        } else {
97 96
             throw new AuthException($this->trans->lang('No package installed to connect to a PostgreSQL server.'));
98 97
         }
99 98
 
Please login to merge, or discard this patch.