xref: /php-src/ext/pdo/pdo.stub.php (revision 84cd2a90)
1<?php
2
3/** @generate-class-entries */
4
5class PDOException extends RuntimeException
6{
7    /** @var int|string */
8    protected $code = 0; // TODO add proper type
9    public ?array $errorInfo = null;
10}
11
12/**
13 * @return array<int, string>
14 * @refcount 1
15 */
16function pdo_drivers(): array {}
17