2008-08-31 22:27:16 +04:00
|
|
|
<?php
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\DBAL\Platforms;
|
2008-08-31 22:27:16 +04:00
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
class MockPlatform extends AbstractPlatform
|
2008-08-31 22:27:16 +04:00
|
|
|
{
|
|
|
|
public function getNativeDeclaration(array $field) {}
|
|
|
|
public function getPortableDeclaration(array $field) {}
|
2009-05-27 22:54:40 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the platform name for this instance
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getName()
|
|
|
|
{
|
|
|
|
return 'mock';
|
|
|
|
}
|
2009-02-20 08:46:20 +03:00
|
|
|
}
|