Start your All-Access Pass to unlock this challenge
What is the difference between the following two blocks of YAML?
Block A:
# config/packages/twig.yaml
twig:
globals:
answer_to_everything: 42
when@dev:
twig:
globals:
answer_to_everything: 21
Block B:
# config/packages/twig.yaml
when@dev:
twig:
globals:
answer_to_everything: 21
twig:
globals:
answer_to_everything: 42