mirror of
https://github.com/php/php-src.git
synced 2025-01-23 20:23:31 +08:00
17 lines
287 B
PHP
17 lines
287 B
PHP
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
class PDOException extends RuntimeException
|
|
{
|
|
/** @var int|string */
|
|
protected $code = 0; // TODO add proper type
|
|
public ?array $errorInfo = null;
|
|
}
|
|
|
|
/**
|
|
* @return array<int, string>
|
|
* @refcount 1
|
|
*/
|
|
function pdo_drivers(): array {}
|