diff --git a/PDO/PDO.php b/PDO/PDO.php index 42bbf1753..e1fc82d80 100644 --- a/PDO/PDO.php +++ b/PDO/PDO.php @@ -1851,7 +1851,16 @@ public function columnCount(): int {} * or if no result set exists. */ #[TentativeType] - #[ArrayShape(["name" => "string", "len" => "int", "precision" => "int", "native_type" => "string", "flags" => "array", "pdo_type" => "int"])] + #[ArrayShape([ + "name" => "string", + "len" => "int", + "precision" => "int", + "oci:decl_type" => "int|string", + "native_type" => "string", + "scale" => "int", + "flags" => "array", + "pdo_type" => "int" + ])] public function getColumnMeta(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $column): array|false {} /**