diff --git a/src/App/Search.php b/src/App/Search.php index c096a19..ce48afa 100644 --- a/src/App/Search.php +++ b/src/App/Search.php @@ -85,7 +85,7 @@ final class Search $stmt = $this->pdo->prepare($sql); foreach ($bind as $name => $value) { - $paramName = $name[0] === ':' ? $name : ':' . $name; + echo $paramName = $name[0] === ':' ? $name : ':' . $name; $type = is_int($value) ? \PDO::PARAM_INT : \PDO::PARAM_STR; $stmt->bindValue($paramName, $value, $type); }