Files
myPrayerJournal/src/app/documents/functions.php
T
2023-08-26 17:18:05 -04:00

16 lines
291 B
PHP

<?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();
}
}