15 lines
375 B
PHP
Executable File
15 lines
375 B
PHP
Executable File
<?php
|
|
class LtDbAdapterFactory
|
|
{
|
|
public function getConnectionAdapter($connectionAdapterType)
|
|
{
|
|
$LtDbConnectionAdapter = "LtDbConnectionAdapter" . ucfirst($connectionAdapterType);
|
|
return new $LtDbConnectionAdapter;
|
|
}
|
|
|
|
public function getSqlAdapter($sqlAdapterType)
|
|
{
|
|
$LtDbSqlAdapter = "LtDbSqlAdapter" . ucfirst($sqlAdapterType);
|
|
return new $LtDbSqlAdapter;
|
|
}
|
|
} |