Passed
Push — master ( b9e4dc...a4d2d3 )
by Florian
04:22
created
src/Identifier/Resolver/PdoResolver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
         $error = $this->pdo->errorInfo();
61 61
         if ($error[0] !== '00000') {
62
-            throw new PDOException($error[2], (int)$error[0]);
62
+            throw new PDOException($error[2], (int) $error[0]);
63 63
         }
64 64
 
65 65
         if ($statement === false) {
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     {
80 80
         foreach ($conditions as $key => $value) {
81 81
             unset($conditions[$key]);
82
-            $conditions[':' . $key] = $value;
82
+            $conditions[':'.$key] = $value;
83 83
         }
84 84
 
85 85
         $statement = $this->buildStatement();
Please login to merge, or discard this patch.