Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/circles.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Model/BaseCircle.php')
-rw-r--r--lib/Model/BaseCircle.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Model/BaseCircle.php b/lib/Model/BaseCircle.php
index 3f387bd2..a12243d1 100644
--- a/lib/Model/BaseCircle.php
+++ b/lib/Model/BaseCircle.php
@@ -92,8 +92,8 @@ class BaseCircle {
*
* @return $this
*/
- public function setUniqueId(string $uniqueId) {
- $this->uniqueId = $uniqueId;
+ public function setUniqueId($uniqueId) {
+ $this->uniqueId = (string) $uniqueId;
return $this;
}