Pipeline and codestyle fixes

Signed-off-by: Raul <raul@nextcloud.com>
This commit is contained in:
Raul
2022-05-05 13:50:16 +02:00
parent 9369a697e3
commit 9fca104059
5 changed files with 35 additions and 27 deletions

View File

@@ -92,7 +92,7 @@ class Card extends RelationalEntity {
protected $relatedStack = null;
protected $relatedBoard = null;
protected $databaseType = 'sqlite';
private $databaseType = 'sqlite';
public const DUEDATE_FUTURE = 0;
public const DUEDATE_NEXT = 1;
@@ -108,6 +108,7 @@ class Card extends RelationalEntity {
$this->addType('archived', 'boolean');
$this->addType('notified', 'boolean');
$this->addType('deletedAt', 'integer');
$this->addType('duedate', 'string');
$this->addRelation('labels');
$this->addRelation('assignedUsers');
$this->addRelation('attachments');