1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/DBAL/Platforms/InformixPlatform.php

21 lines
333 B
PHP

<?php
namespace Doctrine\DBAL\Platforms;
class InformixPlatform extends AbstractPlatform
{
public function __construct()
{
parent::__construct();
}
/**
* Get the platform name for this instance
*
* @return string
*/
public function getName()
{
return 'informix';
}
}