Passed
Push — develop ( a43dd6...a7a008 )
by nguereza
11:16
created
src/Connection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
 
574 574
         return (string) preg_replace_callback(
575 575
             '/\?/',
576
-            function () use ($driver, &$params) {
576
+            function() use ($driver, &$params) {
577 577
                 $param = array_shift($params);
578 578
 
579 579
                 $value = is_object($param) ? get_class($param) : $param;
@@ -657,7 +657,7 @@  discard block
 block discarded – undo
657 657
             $start = microtime(true);
658 658
             $result = $prepared['statement']->execute();
659 659
             $executionTime = microtime(true) - $start;
660
-            $sqlLog['time'] = (int)($executionTime * 1000); // millisecond
660
+            $sqlLog['time'] = (int) ($executionTime * 1000); // millisecond
661 661
 
662 662
             $this->logs[] = $sqlLog;
663 663
 
Please login to merge, or discard this patch.