Passed
Push — main ( 3c706c...efa972 )
by Thierry
07:51 queued 05:53
created
src/Db/Sqlite/Connection.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,7 @@
 block discarded – undo
56 56
     public function quote(string $string)
57 57
     {
58 58
         return ($this->util->isUtf8($string) ?
59
-            "'" . $this->client->escapeString($string) . "'" :
60
-            "x'" . reset(unpack('H*', $string)) . "'");
59
+            "'" . $this->client->escapeString($string) . "'" : "x'" . reset(unpack('H*', $string)) . "'");
61 60
     }
62 61
 
63 62
     public function multiQuery(string $query)
Please login to merge, or discard this patch.