@@ -107,20 +107,20 @@ final class ColumnMetadata
107107
108108 /**
109109 * @param array{
110- * name?: null| string,
111- * type?: null| int,
112- * typeName?: null| string,
113- * label?: null| string,
114- * schemaName?: null| string,
115- * tableName?: null| string,
116- * isAutoIncrement?: null| bool,
117- * isSigned?: null| bool,
118- * isCurrency?: null| bool,
119- * isCaseSensitive?: null| bool,
120- * nullable?: null| int,
121- * precision?: null| int,
122- * scale?: null| int,
123- * arrayBaseColumnType?: null| int,
110+ * name?: string|null ,
111+ * type?: int|null ,
112+ * typeName?: string|null ,
113+ * label?: string|null ,
114+ * schemaName?: string|null ,
115+ * tableName?: string|null ,
116+ * isAutoIncrement?: bool|null ,
117+ * isSigned?: bool|null ,
118+ * isCurrency?: bool|null ,
119+ * isCaseSensitive?: bool|null ,
120+ * nullable?: int|null ,
121+ * precision?: int|null ,
122+ * scale?: int|null ,
123+ * arrayBaseColumnType?: int|null ,
124124 * } $input
125125 */
126126 public function __construct (array $ input )
@@ -143,20 +143,20 @@ public function __construct(array $input)
143143
144144 /**
145145 * @param array{
146- * name?: null| string,
147- * type?: null| int,
148- * typeName?: null| string,
149- * label?: null| string,
150- * schemaName?: null| string,
151- * tableName?: null| string,
152- * isAutoIncrement?: null| bool,
153- * isSigned?: null| bool,
154- * isCurrency?: null| bool,
155- * isCaseSensitive?: null| bool,
156- * nullable?: null| int,
157- * precision?: null| int,
158- * scale?: null| int,
159- * arrayBaseColumnType?: null| int,
146+ * name?: string|null ,
147+ * type?: int|null ,
148+ * typeName?: string|null ,
149+ * label?: string|null ,
150+ * schemaName?: string|null ,
151+ * tableName?: string|null ,
152+ * isAutoIncrement?: bool|null ,
153+ * isSigned?: bool|null ,
154+ * isCurrency?: bool|null ,
155+ * isCaseSensitive?: bool|null ,
156+ * nullable?: int|null ,
157+ * precision?: int|null ,
158+ * scale?: int|null ,
159+ * arrayBaseColumnType?: int|null ,
160160 * }|ColumnMetadata $input
161161 */
162162 public static function create ($ input ): self
0 commit comments