Unlock this challenge:
Which of the following is the correct way to use KnpTimeBundle to format dates in a Twig template to show how much time has passed since the ship arrived?
{{ comment.leftAt|date }}
{{ comment.leftAt|time_diff }}
{{ comment.leftAt|date('ago') }}
{{ comment.leftAt|ago }}
Both B & D are correct