2008-08-31 22:27:16 +04:00
|
|
|
<?php
|
2008-09-12 12:51:56 +04:00
|
|
|
#namespace Doctrine::DBAL::Platforms;
|
2008-08-31 22:27:16 +04:00
|
|
|
|
2008-09-12 12:51:56 +04:00
|
|
|
class Doctrine_DBAL_Platforms_MockPlatform extends Doctrine_DBAL_Platforms_AbstractPlatform
|
2008-08-31 22:27:16 +04:00
|
|
|
{
|
|
|
|
public function getNativeDeclaration(array $field) {}
|
|
|
|
public function getPortableDeclaration(array $field) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|