Skip to content

Commit

Permalink
Removed deprecation leftovers
Browse files Browse the repository at this point in the history
1. `SqliteSchemaManager#_getPortableTableColumnList()` was mistakenly marked `@deprecated` instead of `#_getPortableTableIndexDefinition()` in doctrine#3565.
2. `OracleSchemaManager#_getPortableDatabaseDefinition()` was mistakenly marked `@deprecated` instead of `#_getPortableFunctionDefinition()` in doctrine#3565.
3. The deprecation message in the `OracleSchemaManager#createDatabase()` description is irrelevant as of doctrine#3565.
  • Loading branch information
morozov committed Dec 31, 2019
1 parent acc4686 commit e24b40a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
4 changes: 0 additions & 4 deletions lib/Doctrine/DBAL/Schema/OracleSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,6 @@ protected function _getPortableSequenceDefinition(array $sequence) : Sequence

/**
* {@inheritdoc}
*
* @deprecated
*/
protected function _getPortableDatabaseDefinition(array $database) : string
{
Expand All @@ -279,8 +277,6 @@ protected function _getPortableDatabaseDefinition(array $database) : string

/**
* {@inheritdoc}
*
* Calling this method without an argument or by passing NULL is deprecated.
*/
public function createDatabase(string $database) : void
{
Expand Down
2 changes: 0 additions & 2 deletions lib/Doctrine/DBAL/Schema/SqliteSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,6 @@ protected function _getPortableTableIndexesList(array $tableIndexRows, string $t

/**
* {@inheritdoc}
*
* @deprecated
*/
protected function _getPortableTableColumnList(string $table, string $database, array $tableColumns) : array
{
Expand Down

0 comments on commit e24b40a

Please sign in to comment.