Capitalization

This commit is contained in:
Michael 2021-09-10 23:59:33 +00:00
parent b170dd765d
commit f33a98578d
2 changed files with 2 additions and 2 deletions

View file

@ -223,7 +223,7 @@ class Contact
$ret = DBA::update('contact', $fields, $condition, $old_fields); $ret = DBA::update('contact', $fields, $condition, $old_fields);
// Apply changes to the "user-contact" table on dedicated fields // Apply changes to the "user-contact" table on dedicated fields
Contact\User::UpdateByContactUpdate($fields, $condition); Contact\User::updateByContactUpdate($fields, $condition);
return $ret; return $ret;
} }

View file

@ -87,7 +87,7 @@ class User
* @throws PDOException * @throws PDOException
* @throws Exception * @throws Exception
*/ */
public static function UpdateByContactUpdate(array $fields, array $condition) public static function updateByContactUpdate(array $fields, array $condition)
{ {
DBA::transaction(); DBA::transaction();