SchemaManagerMock.php 307 Bytes
Newer Older
1 2 3 4 5 6
<?php

namespace Doctrine\Tests\Mocks;

class SchemaManagerMock extends \Doctrine\DBAL\Schema\AbstractSchemaManager
{
7 8
    public function __construct(\Doctrine\DBAL\Connection $conn)
    {
9 10
        parent::__construct($conn);
    }
11

romanb's avatar
romanb committed
12
    protected function _getPortableTableColumnDefinition($tableColumn) {}
13
}