@@ -59,7 +59,7 @@ discard block |
||
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 |
||
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(); |