1: <?php
2:
3: /**
4: * Avisota newsletter and mailing system
5: *
6: * PHP Version 5.3
7: *
8: * @copyright bit3 UG 2013
9: * @author Tristan Lins <tristan.lins@bit3.de>
10: * @package avisota-core
11: * @license LGPL-3.0+
12: * @link http://avisota.org
13: */
14:
15: namespace Avisota\Test\Database;
16:
17: use Doctrine\DBAL\Connection;
18:
19: interface DoctrineConnectionProviderInterface
20: {
21: /**
22: * @return Connection
23: */
24: public function createDoctrineConnection();
25: }
26: