WIP on PHP (Leaf) version

This commit is contained in:
2023-08-20 17:27:02 -04:00
parent 3df5c71d81
commit 0ec4fd017f
27 changed files with 2318 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?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();
}
}