I am getting this error:
SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens
from teh following code
$check = Answers::findFirst(array(
'conditons' => 'uuid = ?1 AND question = ?2 AND type = ?3',
'bind' => array(
1 => $data['uuid'],
2 => $data['question'],
3 => 'text'
)));