Merge remote-tracking branch 'origin/calendar/synchro-msgraph' into calendar/finalization

This commit is contained in:
2022-06-17 17:04:37 +02:00
96 changed files with 4505 additions and 305 deletions

View File

@@ -359,10 +359,17 @@ class User implements AdvancedUserInterface
}
}
public function setAttributeByDomain(string $domain, string $key, $value): self
{
$this->attributes[$domain][$key] = $value;
return $this;
}
/**
* Merge the attributes with existing attributes.
*
* Only the key provided will be created or updated.
* Only the key provided will be created or updated. For a two-level array, use @see{User::setAttributeByDomain}
*/
public function setAttributes(array $attributes): self
{