php-src/ext/pdo/pdo_dbh.stub.php
Nikita Popov 2e343fcb42 Mark PDO::setAttribute() $value as mixed
For consistency with PDOStatement::setAttribute(). Attribute values
can for example also be bool.

This is backwards-compatible, as mixed is the same as no type for
parameter variance.
2021-08-20 16:51:52 +02:00

50 lines
1.3 KiB
PHP

<?php
/** @generate-function-entries */
class PDO
{
public function __construct(string $dsn, ?string $username = null, ?string $password = null, ?array $options = null) {}
/** @return bool */
public function beginTransaction() {}
/** @return bool */
public function commit() {}
/** @return string|null */
public function errorCode() {}
/** @return array */
public function errorInfo() {}
/** @return int|false */
public function exec(string $statement) {}
/** @return bool|int|string|array|null */
public function getAttribute(int $attribute) {}
/** @return array */
public static function getAvailableDrivers() {}
/** @return bool */
public function inTransaction() {}
/** @return string|false */
public function lastInsertId(?string $name = null) {}
/** @return PDOStatement|false */
public function prepare(string $query, array $options = []) {}
/** @return PDOStatement|false */
public function query(string $query, ?int $fetchMode = null, mixed ...$fetchModeArgs) {}
/** @return string|false */
public function quote(string $string, int $type = PDO::PARAM_STR) {}
/** @return bool */
public function rollBack() {}
/** @return bool */
public function setAttribute(int $attribute, mixed $value) {}
}