-
Notifications
You must be signed in to change notification settings - Fork 441
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
fix(Psalm): Move away from private and deprecated classes #10672
Conversation
Signed-off-by: Joas Schilling <coding@schilljs.com>
a44f0b5
to
a57dbcb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧹
@@ -120,7 +120,7 @@ public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array | |||
protected function makeOne2OneParticipantsOwners(array $one2oneRooms): int { | |||
$update = $this->db->getQueryBuilder(); | |||
|
|||
if (!$this->db->getDatabasePlatform() instanceof PostgreSQL94Platform) { | |||
if (!$this->db->getDatabasePlatform() instanceof PostgreSQLPlatform) { | |||
$update->update('spreedme_room_participants') | |||
->set('participantType', $update->createNamedParameter(Participant::OWNER)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the casing is different by DB platform? 😮
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well postgres is case sensitive, that's why we created a new table afterwards. 🙈
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤐
☑️ Resolves
🛠️ API Checklist
🏁 Checklist
docs/
has been updated or is not required