Start your All-Access Pass to unlock this challenge
I'm doing some debugging and I have the following code:
public function somePage($id)
{
$question = $questionRepository->find($id);
$answers = $question->getAnswers();
dd($answers);
}
When the dd()
is hit, how many queries have been executed?