vendor/bundles/Symfony/Bundle/DoctrineFixturesBundle/Tests/Common/ContainerAwareFixture.php
<?php
namespace Symfony\Bundle\DoctrineFixturesBundle\Tests\Common;
use Doctrine\Common\DataFixtures\FixtureInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
class ContainerAwareFixture implements FixtureInterface, ContainerAwareInterface
{
public $container;
public function setContainer(ContainerInterface $container = null)
{
$this->container = $container;
}
public function load($manager)
{
}
}