Passed
Push — master ( 827113...b9e4dc )
by Florian
06:14
created
src/Identifier/Resolver/PdoResolver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
 		$error = $this->pdo->errorInfo();
60 60
 		if ($error[0] !== '00000') {
61
-			throw new PDOException($error[2], (int)$error[0]);
61
+			throw new PDOException($error[2], (int) $error[0]);
62 62
 		}
63 63
 
64 64
 		return $statement;
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 	{
72 72
 		foreach ($conditions as $key => $value) {
73 73
 			unset($conditions[$key]);
74
-			$conditions[':' . $key] = $value;
74
+			$conditions[':'.$key] = $value;
75 75
 		}
76 76
 
77 77
 		$statement = $this->buildStatement();
Please login to merge, or discard this patch.