$query = $this->getEntityManager()->createQuery('
SELECT COUNT(s) FROM MyDiaryBundle:TrainingSession s
WHERE s.status = :completed
AND s.user = :user')
->setParameter('user',$user)
->setParameter('completed','confirmed');
$result = $query->getResult();
RESULT : array(1) { [0]=> array(1) { [1]=> string(1) "0" } }
And why is the nested array keyed with '1' ?