Skip to content

Instantly share code, notes, and snippets.

@ydcode
ydcode / FooRepository.php
Created May 9, 2016 06:20 — forked from bigcalm/FooRepository.php
Making an entity repository container aware in Symfony2.1
<?php
namespace Acme\DemoBundle\Repository;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Doctrine\ORM\EntityRepository;
/**