16 lines
291 B
PHP
Raw Normal View History

2023-08-20 17:27:02 -04:00
<?php
use BitBadger\PgSQL\Documents\Configuration;
if (!function_exists('pdo')) {
/**
* Return the active PostgreSQL PDO object
*
* @return \PDO The data connection from the configuration
*/
function pdo()
{
return Configuration::getConn();
}
}