Overwrite whole section in neon config 28/10/2014

If you use exclamation mark after section name in config.local.neon, it will override the whole structure it may have inherited from config.neon. # config.local.neon nette: session!: # <-- there is the exclamation mark autoStart: yes # config.neon nette: session: expiration: 14 days # this will not be in the result

If you use exclamation mark after section name in config.local.neon, it will override the whole structure it may have inherited from config.neon.

# config.local.neon
nette:
    session!:   # <-- there is the exclamation mark
        autoStart: yes
# config.neon
nette:
    session:
        expiration: 14 days  # this will not be in the result