1
0
mirror of synced 2025-01-05 16:53:21 +03:00
doctrine2/lib/Doctrine/DBAL/Platforms/MockPlatform.php

10 lines
262 B
PHP
Raw Normal View History

<?php
#namespace Doctrine::DBAL::Platforms;
class Doctrine_DBAL_Platforms_MockPlatform extends Doctrine_DBAL_Platforms_AbstractPlatform
{
public function getNativeDeclaration(array $field) {}
public function getPortableDeclaration(array $field) {}
}
?>