Flag of Ukraine
SymfonyCasts stands united with the people of Ukraine
Next Chapter

Challenge #1 of 1


Q: 

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?

userVoice