@@ -487,7 +487,7 @@ discard block |
||
| 487 | 487 | /** |
| 488 | 488 | * Marks this type as to be commented in ALTER TABLE and CREATE TABLE statements. |
| 489 | 489 | * |
| 490 | - * @param string|\Doctrine\DBAL\Types\Type $doctrineType |
|
| 490 | + * @param Type $doctrineType |
|
| 491 | 491 | * |
| 492 | 492 | * @return void |
| 493 | 493 | */ |
@@ -603,7 +603,7 @@ discard block |
||
| 603 | 603 | /** |
| 604 | 604 | * Gets all SQL wildcard characters of the platform. |
| 605 | 605 | * |
| 606 | - * @return array |
|
| 606 | + * @return string[] |
|
| 607 | 607 | */ |
| 608 | 608 | public function getWildcards() |
| 609 | 609 | { |
@@ -855,7 +855,7 @@ discard block |
||
| 855 | 855 | * |
| 856 | 856 | * @param string $str Literal string. |
| 857 | 857 | * @param string $substr Literal string to find. |
| 858 | - * @param integer|boolean $startPos Position to start at, beginning of string by default. |
|
| 858 | + * @param integer $startPos Position to start at, beginning of string by default. |
|
| 859 | 859 | * |
| 860 | 860 | * @return string |
| 861 | 861 | * |
@@ -1416,7 +1416,7 @@ discard block |
||
| 1416 | 1416 | /** |
| 1417 | 1417 | * Returns the SQL to safely drop a temporary table WITHOUT implicitly committing an open transaction. |
| 1418 | 1418 | * |
| 1419 | - * @param \Doctrine\DBAL\Schema\Table|string $table |
|
| 1419 | + * @param string $table |
|
| 1420 | 1420 | * |
| 1421 | 1421 | * @return string |
| 1422 | 1422 | */ |
@@ -1639,7 +1639,7 @@ discard block |
||
| 1639 | 1639 | * @param array $columns |
| 1640 | 1640 | * @param array $options |
| 1641 | 1641 | * |
| 1642 | - * @return array |
|
| 1642 | + * @return string[] |
|
| 1643 | 1643 | */ |
| 1644 | 1644 | protected function _getCreateTableSQL($tableName, array $columns, array $options = []) |
| 1645 | 1645 | { |
@@ -1822,7 +1822,7 @@ discard block |
||
| 1822 | 1822 | * Returns the SQL to create an unnamed primary key constraint. |
| 1823 | 1823 | * |
| 1824 | 1824 | * @param \Doctrine\DBAL\Schema\Index $index |
| 1825 | - * @param \Doctrine\DBAL\Schema\Table|string $table |
|
| 1825 | + * @param string $table |
|
| 1826 | 1826 | * |
| 1827 | 1827 | * @return string |
| 1828 | 1828 | */ |
@@ -2120,7 +2120,7 @@ discard block |
||
| 2120 | 2120 | * @param \Doctrine\DBAL\Schema\Index $index The definition of the index to rename to. |
| 2121 | 2121 | * @param string $tableName The table to rename the given index on. |
| 2122 | 2122 | * |
| 2123 | - * @return array The sequence of SQL statements for renaming the given index. |
|
| 2123 | + * @return string[] The sequence of SQL statements for renaming the given index. |
|
| 2124 | 2124 | */ |
| 2125 | 2125 | protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) |
| 2126 | 2126 | { |