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