Symfony Notice: Undefined offset: 0 in /symfony/util/Spyc.class.php

Monday, January 26th, 2009 by The BCM Team

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

Leave a Reply