Unlock this challenge:
Which of the following is a valid way to get the "logger" service from inside a controller method?
Neither B nor C are correct.
public function homepage($logger)
public function homepage(LoggerInterface $foo)
Both B and C are correct.