mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-27 09:49:22 +02:00
17 lines
245 B
PHP
17 lines
245 B
PHP
<?php
|
|
|
|
if (PHP_VERSION_ID >= 80000) {
|
|
require LIBS . 'pot/OTS_DB_PDOQuery_PHP71.php';
|
|
} else {
|
|
trait OTS_DB_PDOQuery
|
|
{
|
|
/**
|
|
* @return PDOStatement
|
|
*/
|
|
public function query()
|
|
{
|
|
return $this->doQuery(...func_get_args());
|
|
}
|
|
}
|
|
}
|