Passed
Push — develop ( 40c14d...0639d7 )
by nguereza
01:50
created
src/Connection.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -475,12 +475,12 @@  discard block
 block discarded – undo
475 475
         }
476 476
     }
477 477
 
478
-     /**
479
-     * Change the query parameters placeholder with the value
480
-     * @param string $query
481
-     * @param array<int, mixed> $params
482
-     * @return string
483
-     */
478
+        /**
479
+         * Change the query parameters placeholder with the value
480
+         * @param string $query
481
+         * @param array<int, mixed> $params
482
+         * @return string
483
+         */
484 484
     protected function replaceParameters(string $query, array $params): string
485 485
     {
486 486
         $driver = $this->driver;
@@ -559,9 +559,9 @@  discard block
 block discarded – undo
559 559
             'query' => $prepared['query'],
560 560
             'parameters' => implode(', ', $prepared['params'])
561 561
         ];
562
-		if ($this->emulate) {
563
-			$sqlLog['emulate'] = true;
564
-		}
562
+        if ($this->emulate) {
563
+            $sqlLog['emulate'] = true;
564
+        }
565 565
 
566 566
         try {
567 567
             if ($prepared['params']) {
Please login to merge, or discard this patch.