From 0b7e39097bea247512e05109fa5b523796a93680 Mon Sep 17 00:00:00 2001 From: Robin D'Arcy Date: Thu, 27 Jun 2019 17:29:41 +0100 Subject: [PATCH] Fix typo in AbstractSchemaManager.php docblock Change "we're" to "where" in docblock for listTableColumns() method. Add comma to improve readability. --- lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php b/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php index 5c92c2e3f7b..259803c423f 100644 --- a/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php +++ b/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php @@ -146,7 +146,7 @@ public function listSequences($database = null) * this column definition does try to contain the 'primary' field for * the reason that it is not portable across different RDBMS. Use * {@see listTableIndexes($tableName)} to retrieve the primary key - * of a table. We're a RDBMS specifies more details these are held + * of a table. Where a RDBMS specifies more details, these are held * in the platformDetails array. * * @param string $table The name of the table.