From f33a98578d317887ebc1c4c6e077fef948604094 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 10 Sep 2021 23:59:33 +0000 Subject: [PATCH] Capitalization --- src/Model/Contact.php | 2 +- src/Model/Contact/User.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Model/Contact.php b/src/Model/Contact.php index 25c40a1d3..1eb133986 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -223,7 +223,7 @@ class Contact $ret = DBA::update('contact', $fields, $condition, $old_fields); // Apply changes to the "user-contact" table on dedicated fields - Contact\User::UpdateByContactUpdate($fields, $condition); + Contact\User::updateByContactUpdate($fields, $condition); return $ret; } diff --git a/src/Model/Contact/User.php b/src/Model/Contact/User.php index bf6fa8a94..184b10991 100644 --- a/src/Model/Contact/User.php +++ b/src/Model/Contact/User.php @@ -87,7 +87,7 @@ class User * @throws PDOException * @throws Exception */ - public static function UpdateByContactUpdate(array $fields, array $condition) + public static function updateByContactUpdate(array $fields, array $condition) { DBA::transaction();