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

Challenge #2 of 2


Q: 

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

userVoice