Completed
Push — master ( 43cd23...1b6594 )
by Agel_Nash
02:58
created
src/Drivers/MySqliDriver.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      */
38 38
     public function getConnect()
39 39
     {
40
-        if (! $this->isConnected()) {
40
+        if (!$this->isConnected()) {
41 41
             return $this->connect();
42 42
         }
43 43
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
                 throw new Exceptions\ConnectException($this->conn->connect_error);
63 63
             }
64 64
 
65
-            if (! $this->isConnected()) {
65
+            if (!$this->isConnected()) {
66 66
                 throw new Exceptions\ConnectException(
67 67
                     $this->getLastError() ?: 'Failed to create the database connection!'
68 68
                 );
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
      */
335 335
     public function getLastErrorNo()
336 336
     {
337
-        return (string)$this->getConnect()->sqlstate;
337
+        return (string) $this->getConnect()->sqlstate;
338 338
     }
339 339
 
340 340
     /**
Please login to merge, or discard this patch.