Vendor update && Started using DoctrineMigrations
This commit is contained in:
49
vendor/doctrine/dbal/tests/Doctrine/Tests/DBAL/Mocks/MockPlatform.php
vendored
Normal file
49
vendor/doctrine/dbal/tests/Doctrine/Tests/DBAL/Mocks/MockPlatform.php
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
namespace Doctrine\Tests\DBAL\Mocks;
|
||||
|
||||
use Doctrine\DBAL\Platforms;
|
||||
|
||||
class MockPlatform extends \Doctrine\DBAL\Platforms\AbstractPlatform
|
||||
{
|
||||
/**
|
||||
* Gets the SQL Snippet used to declare a BLOB column type.
|
||||
*/
|
||||
public function getBlobTypeDeclarationSQL(array $field)
|
||||
{
|
||||
throw DBALException::notSupported(__METHOD__);
|
||||
}
|
||||
|
||||
public function getBooleanTypeDeclarationSQL(array $columnDef) {}
|
||||
public function getIntegerTypeDeclarationSQL(array $columnDef) {}
|
||||
public function getBigIntTypeDeclarationSQL(array $columnDef) {}
|
||||
public function getSmallIntTypeDeclarationSQL(array $columnDef) {}
|
||||
public function _getCommonIntegerTypeDeclarationSQL(array $columnDef) {}
|
||||
|
||||
public function getVarcharTypeDeclarationSQL(array $field)
|
||||
{
|
||||
return "DUMMYVARCHAR()";
|
||||
}
|
||||
|
||||
/** @override */
|
||||
public function getClobTypeDeclarationSQL(array $field)
|
||||
{
|
||||
return 'DUMMYCLOB';
|
||||
}
|
||||
|
||||
public function getVarcharDefaultLength()
|
||||
{
|
||||
return 255;
|
||||
}
|
||||
|
||||
public function getName()
|
||||
{
|
||||
return 'mock';
|
||||
}
|
||||
protected function initializeDoctrineTypeMappings() {
|
||||
}
|
||||
protected function getVarcharTypeDeclarationSQLSnippet($length, $fixed)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user