I have a situation in which I want to query the database with findOneBy($id) method from doctrine in symfony2.
$namePosting = $this->getDoctrine()->getRepository('MyBundle:Users')->findOneById($userPosting);
The result it's an object with protected properties. I want to return it directly an array. How can this be done ?