summaryrefslogtreecommitdiffstats
path: root/apps/files_reminders/lib/Db/Reminder.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_reminders/lib/Db/Reminder.php')
-rw-r--r--apps/files_reminders/lib/Db/Reminder.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_reminders/lib/Db/Reminder.php b/apps/files_reminders/lib/Db/Reminder.php
index 98e2cc5838f..99cd9b59092 100644
--- a/apps/files_reminders/lib/Db/Reminder.php
+++ b/apps/files_reminders/lib/Db/Reminder.php
@@ -42,10 +42,10 @@ use OCP\AppFramework\Db\Entity;
* @method bool getNotified()
*/
class Reminder extends Entity {
- protected string $userId;
- protected int $fileId;
- protected int $remindAt;
- protected bool $notified = false;
+ protected $userId;
+ protected $fileId;
+ protected $remindAt;
+ protected $notified = false;
public function __construct() {
$this->addType('userId', 'string');