I am using Doctrine and have this line in PHP:
$result = $entityManager->getRepository('Example\Entity\Users')->findOneBy(array(
'address' => $address->getId(),
'email' => $email->getEmail(),
'type' => $type->getId(),
));
I would like to know if there is any code standards for setting lines with multiple calls. I looked through the Symphony and some of the others PSRs but couldn't find anything this specific.