Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / dbal / tests / Doctrine / Tests / Mocks / SchemaManagerMock.php
1 <?php
2
3 namespace Doctrine\Tests\Mocks;
4
5 class SchemaManagerMock extends \Doctrine\DBAL\Schema\AbstractSchemaManager
6 {
7     public function __construct(\Doctrine\DBAL\Connection $conn)
8     {
9         parent::__construct($conn);
10     }
11
12     protected function _getPortableTableColumnDefinition($tableColumn) {}
13 }