Fatal Error when using Fixtures with Doctrine 2
The FixtureInterface::load() method has a type hint since v1.0.0-ALPHA2:
use Doctrine\Common\Persistence\ObjectManager;
function load(ObjectManager $manager);
You should add the ObjectManager dependency:
use Doctrine\Common\Persistence\ObjectManager;