2009-02-17 15:25:03 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\Mocks;
|
|
|
|
|
|
|
|
class SchemaManagerMock extends \Doctrine\DBAL\Schema\AbstractSchemaManager
|
|
|
|
{
|
2009-02-18 10:59:11 +03:00
|
|
|
public function __construct(\Doctrine\DBAL\Connection $conn)
|
|
|
|
{
|
2009-02-17 15:25:03 +03:00
|
|
|
parent::__construct($conn);
|
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2009-12-18 15:30:19 +03:00
|
|
|
protected function _getPortableTableColumnDefinition($tableColumn) {}
|
2009-02-18 10:59:11 +03:00
|
|
|
}
|