Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Non-public API cleanup in AbstractSchemaManager #5456

Merged
merged 5 commits into from
Jun 21, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove default implementation of AbstractSchemaManager::_getPortableD…
…atabaseDefinition()
  • Loading branch information
morozov committed Jun 20, 2022
commit 7a29e0da2c4f66936c432e872056866c37bbb57d
6 changes: 3 additions & 3 deletions src/Schema/AbstractSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -616,12 +616,12 @@ public function renameTable(string $name, string $newName): void

/**
* @param array<string, string> $database
*
* @throws Exception
*/
protected function _getPortableDatabaseDefinition(array $database): string
{
assert(! empty($database));

return array_shift($database);
throw NotSupported::new(__METHOD__);
}

/**
Expand Down