Mark V
1: <?php
2: namespace MOC\V\Component\Database\Component\Bridge\Repository;
3:
4: use MOC\V\Component\Database\Component\IBridgeInterface;
5: use MOC\V\Core\AutoLoader\AutoLoader;
6:
7: /**
8: * Class Doctrine2ORM
9: *
10: * @package MOC\V\Component\Database\Component\Bridge
11: */
12: class Doctrine2ORM extends Doctrine2DBAL implements IBridgeInterface
13: {
14:
15: /**
16: *
17: */
18: public function __construct()
19: {
20:
21: AutoLoader::getNamespaceAutoLoader('Doctrine\ORM', __DIR__.'/../../../Vendor/Doctrine2ORM/2.5.0/lib');
22: AutoLoader::getNamespaceAutoLoader('Doctrine\Common\Cache',
23: __DIR__.'/../../../Vendor/Doctrine2Cache/1.4.1/lib');
24: AutoLoader::getNamespaceAutoLoader('Doctrine\Common\Annotations',
25: __DIR__.'/../../../Vendor/Doctrine2Annotations/1.2.6/lib');
26: AutoLoader::getNamespaceAutoLoader('Doctrine\Common\Lexer',
27: __DIR__.'/../../../Vendor/Doctrine2Lexer/1.0.1/lib');
28: AutoLoader::getNamespaceAutoLoader('Doctrine\Common\Collections',
29: __DIR__.'/../../../Vendor/Doctrine2Collections/1.3.0/lib');
30: AutoLoader::getNamespaceAutoLoader('Doctrine\Instantiator',
31: __DIR__.'/../../../Vendor/Doctrine2Instantiator/1.0.5/src');
32:
33: parent::__construct();
34: }
35:
36: }
37: