mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
26 lines
432 B
PHP
26 lines
432 B
PHP
<?php
|
|
|
|
if (PHP_VERSION_ID >= 80000) {
|
|
trait OTS_DB_PDOQuery
|
|
{
|
|
/**
|
|
* @return PDOStatement
|
|
*/
|
|
public function query(?string $query = null, ?int $fetchMode = null, mixed ...$fetchModeArgs)
|
|
{
|
|
return $this->doQuery($query, $fetchMode, ...$fetchModeArgs);
|
|
}
|
|
}
|
|
} else {
|
|
trait OTS_DB_PDOQuery
|
|
{
|
|
/**
|
|
* @return PDOStatement
|
|
*/
|
|
public function query()
|
|
{
|
|
return $this->doQuery(...func_get_args());
|
|
}
|
|
}
|
|
}
|