1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/lib/Doctrine/DBAL/Platforms/InformixPlatform.php

26 lines
387 B
PHP

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