$phql = "SELECT * FROM Robots WHERE id = :id:";
$robot = $app->modelsManager->executeQuery($phql, array(
'id' => $id
))->getFirst();
Does Phalcon escape that var I am passing in? mysqli_real_escape_string does not work as it needs the link.