/opt/alt/php55/usr/share/pear/Symfony/Bridge/Doctrine
NameSizeModeActions
CacheWarmer/-0755rm
DataCollector/-0755rm
DataFixtures/-0755rm
DependencyInjection/-0755rm
ExpressionLanguage/-0755rm
Form/-0755rm
HttpFoundation/-0755rm
Logger/-0755rm
Security/-0755rm
Test/-0755rm
Validator/-0755rm
autoloader.php3350644editdlrm
ContainerAwareEventManager.php44090644editdlrm
ManagerRegistry.php11920644editdlrm
RegistryInterface.php26690644editdlrm
Edit: /opt/alt/php55/usr/share/pear/Symfony/Bridge/Doctrine/ManagerRegistry.php (1192B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bridge\Doctrine; use Symfony\Component\DependencyInjection\ContainerAwareInterface; use Symfony\Component\DependencyInjection\ContainerInterface; use Doctrine\Common\Persistence\AbstractManagerRegistry; /** * References Doctrine connections and entity/document managers. * * @author Lukas Kahwe Smith */ abstract class ManagerRegistry extends AbstractManagerRegistry implements ContainerAwareInterface { /** * @var ContainerInterface */ protected $container; /** * @inheritdoc */ protected function getService($name) { return $this->container->get($name); } /** * @inheritdoc */ protected function resetService($name) { $this->container->set($name, null); } /** * @inheritdoc */ public function setContainer(ContainerInterface $container = null) { $this->container = $container; } }