From d186394cca308fce8e40581359298b02030b9c22 Mon Sep 17 00:00:00 2001 From: Tigrov Date: Sun, 1 Sep 2024 14:23:30 +0700 Subject: [PATCH] Add doc [skip ci] --- src/Schema/SchemaInterface.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Schema/SchemaInterface.php b/src/Schema/SchemaInterface.php index 755d01c10..225e145b2 100644 --- a/src/Schema/SchemaInterface.php +++ b/src/Schema/SchemaInterface.php @@ -229,6 +229,9 @@ interface SchemaInterface extends ConstraintSchemaInterface */ public function createColumn(string $type, array|int|string $length = null): ColumnInterface; + /** + * Returns the column factory for creating column instances. + */ public function getColumnFactory(): ColumnFactoryInterface; /**