If you are getting an above notice in Symfony (especially after you clear cache) check your yml files. You are most likely missing a colon somewhere or have some other error.
For example:
setting
id1: value1
id2: value2
should be (missing colon):
setting:
id1: value1
id2: value2
